• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHP+AJAX分页,该如何解决

php 搞代码 3年前 (2022-01-23) 20次浏览 已收录 0个评论

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

本文来源gaodai.ma#com搞##代!^码@网*
搞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 “

\n”;
echo “\n”;
echo “

“;
for($a=0;$a<$num;$a++)
{
echo “

\n”;
echo ““;
echo ““;
echo ““;
echo ““;
echo ““;
echo ““;
#echo ““;


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP+AJAX分页,该如何解决
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
ID编号 名称 作者 出版社 ISBN号 类型 价格
“.$hotelname[$a].”“.$name[$a].”“.$author[$a].”“.$publisher[$a].”“.$isbn[$a].”“.$type[$a].”