首页 > 代码库 > PHP实现对mysql数据库内容分页显示
PHP实现对mysql数据库内容分页显示
<?php $conn=mysql_connect('127.0.0.1','root',''); mysql_query('use test',$conn); mysql_query('set names utf8',$conn); $perNumber=3; //每页显示的记录数 $page=$_GET['page']; //获得当前的页面值 $count=mysql_query("select count(*) from kangbiao"); //获得记录总数 $rs=mysql_fetch_array($count); $totalNumber=$rs[0]; $totalPage=ceil($totalNumber/$perNumber); //计算出总页数 if (!isset($page)) { $page=1; } //如果没有值,则赋值1 $startCount=($page-1)*$perNumber; //分页开始,根据此方法计算出开始的记录 $result=mysql_query("select * from kangbiao limit $startCount,$perNumber"); //根据前面的计算出开始的记录和记录数 echo "<table border='1'>"; echo "<tr>"; echo "<th>id</th>"; echo "<th>name</th>"; echo "<th>age</th>"; echo "<th>grade</td>"; echo "</tr>"; while ($row=mysql_fetch_array($result)) { echo "<tr>"; echo "<td>$row[0]</td>"; echo "<td>$row[1]</td>"; echo "<td>$row[2]</td>"; echo "<td>$row[3]</td>"; //显示数据库的内容 echo "</tr>"; } echo "</table>"; if ($page != 1) { //页数不等于1 ?> <a href=http://www.mamicode.com/"02.php?page=<?php echo $page - 1;?>">上一页 >运行结果:
PHP实现对mysql数据库内容分页显示
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。