欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php簡單的分頁程序第1/5頁

 更新時間:2008年03月30日 01:05:20   作者:  
php 分頁 簡單

[code]
<html> 
<head> 
<meta http-equiv="Content-Type" c> 
<title>用戶信息總匯</title> 
<style type="text/css"> 
<!-- 
body,td,th { 
font-size: 14px; 

.STYLE1 { 
font-size: 16px; 
color: #666666; 

--> 
</style> 
</head> 
<body leftMargin=0 topMargin=0 rightmargin=0 > 
<p> 
<?php 
############################################################# 
###########        連接數(shù)據(jù)庫                ################ 
############################################################# 
$db=mysql_connect("192.168.0.2","root","goalwe608");  //數(shù)據(jù)庫,用戶名,密碼 
mysql_select_db("86pos",$db);   //數(shù)據(jù)庫 
############# 分頁 ############ 
//設定每一頁顯示的記錄數(shù) 
$pagesize=5; 
//取得記錄總數(shù) 
$res=mysql_query("select count(id) from buyer " ,$db); 
$myrow = mysql_fetch_array($res); 
$numrows=$myrow[0]; 
//計算總頁數(shù) 
$pages=intval($numrows/$pagesize); 
if ($numrows%$pagesize) 
  $pages++; 
//判斷頁數(shù)設置與否,如無則定義為首頁 
if (!isset($page)) 
  $page=1; 

//防止惡意訪問 
if ($_GET

相關(guān)文章

最新評論