php简单的分页程序第1/5页
[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
12345下一页阅读全文
下一篇:PHP截取汉字乱码问题解决方法mb_substr函数的应用