[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
#############################################################
########### 連接數據庫 ################
#############################################################
$db=mysql_connect("192.168.0.2","root","goalwe608"); //數據庫,用戶名,密碼
mysql_select_db("86pos",$db); //數據庫
############# 分頁 ############
//設定每一頁顯示的記錄數
$pagesize=5;
//取得記錄總數
$res=mysql_query("select count(id) from buyer " ,$db);
$myrow = mysql_fetch_array($res);
$numrows=$myrow[0];
//計算總頁數
$pages=intval($numrows/$pagesize);
if ($numrows%$pagesize)
$pages++;
//判斷頁數設置與否,如無則定義為首頁
if (!isset($page))
$page=1;
//防止惡意訪問
if ($_GET