PHP ADODB 페이지 기능 구현 간단 한 예제

이 글 은 PHP ADODB 가 페이지 기능 을 실현 하 는 것 을 실례 로 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
코드
adodb.inc.php 는 공식 홈 페이지http://adodb.sourceforge.net/에서 다운로드 할 수 있 습 니 다.
또는 여 기 를 클릭 하 십시오본 사이트 다운로드.
conn.php:

<?php
 include_once ('../adodb5/adodb.inc.php');
 $conn = ADONewConnection('mysql');
 $conn -> PConnect('localhost','root','root','db_database14');
 $conn -> execute('set names gb2312');
?>

list.php:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>    </title>
<style type="text/css">
<!--
TH {
background-color:#FFFFFF;
 font-size: 12px;
 color: #FF0000;
}
td {
background-color:#FFFFFF;
 font-size: 12px;
 color: #FF0000;
}
a:link {
 color: #FF0000;
 text-decoration: none;
}
a:visited {
 text-decoration: none;
 color: #FF0000;
}
a:hover {
 text-decoration: none;
}
a:active {
 text-decoration: none;
}
-->
</style>
</head>
<body>
<table width="384" border="0" cellpadding="0" cellspacing="0">
 <tr>
 <td height="30">
 <?php
 include_once 'conn/conn.php';     //         
 include('../adodb5/tohtml.inc.php');   //  tohtml.inc.php  
 $sql = 'select * from tb_object';    //    
 $num = 2;          //        
 if(isset($_GET['n_page'])){      //      
  $c_page = $_GET[n_page];     // $n_page    $c_apge
 }else{
  $c_page = 1;        //     $c_page
 }
 $rst = $conn -> PageExecute($sql,$num,$c_page); //  pageExecute  
 if(false != $rst){
  if(!$rst -> AtfirstPage()){     //         
?><!--           -->
  <a href ="<?php echo '?n_pge=1' ?>">    </a>
  <a href ="<?php echo '?n_page='.($rst -> AbsolutePage() - 1); ?>">     </a>
<!-- ---------------------------- -->
<?php
  }
  if(!$rst -> AtlastPage()){     //         
?>
<!--           -->
  <a href = "<?php echo '?n_page='.($rst -> AbsolutePage() + 1); ?>">     </a>
  <a href ="<?php echo '?n_page='.($rst -> LastPageNo());?>">    </a>
<!-- ----------------------------- -->
<?php
  }
?></td>
 </tr>
 <tr>
 <td><?php
  rs2html($rst,'width=350 border="1" cellpadding="1" cellspacing="1" bordercolor="#FFFFFF" bgcolor="#FF0000"',array('ID','  ','    '));
 ?></td>
 </tr><?php }?>
 <tr>
 <td height="30">    <?php echo $rst -> AbsolutePage(); ?> /   <?php echo $rst -> LastPageNo(); ?> </td>
 </tr>
</table>
</body>
</html>

2.운행 결과

더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기