PHP+AJAX分页
<meta http-equiv=”Content-Type” content=”text/html; charset=gbk” />
<script>
function viewpage(p){
if(window.XMLHttpRequest){
var xmlReq = new XMLHttpRequest();
} else if(window.ActiveXObject) {
var xmlReq = new ActiveXObject(‘Microsoft.XMLHTTP’);
}
var formData = “page=”+p;
xmlReq.onreadystatechange = function(){
if(xmlReq.readyState == 4){
document.getElementById(‘content2’).innerHTML = xmlReq.responseText;
}
}
xmlReq.open(“post”, “d.php”, true);
xmlReq.setRequestHeader(“Content-Type”, “application/x-www-form-urlencoded”);
xmlReq.send(formData);
return false;
}
</script>
<?php
#header(“Content-Type:text/html;charset=G
搞gaodaima代码
B2312″);
$pagesize=10;
//echo $_POST[‘page’];
$db=mysql_connect(“localhost”,”root”,””); //创建数据库连接
mysql_query(“set names gbk”);
mysql_select_db(“pagelist”);
$result = mysql_query(“select * FROM sheet1”,$db);
$myrow = mysql_fetch_array($result);
$numrows=mysql_num_rows($result);
$pages=intval($numrows/$pagesize);
if ($numrows%$pagesize)
$pages++;
if (isset($_POST[‘page’])){
$page=intval($_POST[‘page’]);
}
else{
//设置为第一页
$page=1;
}
$first=1;
$prev=$page-1;
$next=$page+1;
$last=$pages;
//计算记录偏移量
$offset=$pagesize*($page – 1);
//读取指定记录数
//$result=mysql_query(“select `id` , count( * ) from “.book.” GROUP BY `id` order by id desc limit $offset,$pagesize”);
$result=mysql_query(“select * from sheet1 limit $offset,$pagesize”);
$num = mysql_num_rows($result);
while ($row = mysql_fetch_array($result,$db)) {
$hotelname[] = $row[0];
$name[]=$row[1];
$author[]=$row[2];
$publisher[]=$row[3];
$isbn[]=$row[4];
$type[]=$row[5];
$smallpic[]=$row[6];
//$countpeople[] = $row[1];
}
echo “
ID编号 | 名称 | 作者 | 出版社 | ISBN号 | 类型 | 价格 |
---|---|---|---|---|---|---|
“.$hotelname[$a].” | “;“.$name[$a].” | “;“.$author[$a].” | “;“.$publisher[$a].” | “;“.$isbn[$a].” | “;“.$type[$a].” | “;“; |