- 论坛徽章:
- 0
|
- <?php
- session_start();
- if($_SESSION["adname"]==''){
- echo"<script>;alert('请登陆后来管
- 理');location.href='admin_login.php';</script>;";
- }
- else
- ?>;
- <html>;
- <head>;
- </head>;
- <body>;
- <table width="500" border="2" cellpading="0" cellspacing="2"
- align="center">;
- <tr width="100%">;
- <td width="50" align="center">;ID</td>;
- <td width="80" align="center">;用户名</td>;
- <td width="80" align="center">;密码</td>;
- <td width="50" align="center">;等级</td>;
- <td width="50" align="center">;创建时间</td>;
- <td width="10">;</td>;
- <td width="10">;</td>;
- </tr>;
- <?php
- $conn=mysql_connect(localhost,root,root)or die(无法连接数据库);
- $db=mysql_select_db(php,$conn);
- if(!$a){
- $a=0;
- }
- $page=20;
- $query="select * from admin order by id desc limit $a,$page";
- $result=mysql_query($query,$conn)or die('无法执行操作');
- $row=mysql_fetch_array($result);
- do{
- $id=$row['id'];
- $name=$row['name'];
- $password=$row['password'];
- $level=$row['level'];
- $time=$row['time'];
- echo "<tr width='100%'>;";
- echo "<td width='50'>;$id</td>;";
- echo "<td width='80'>;$name</td>;";
- echo "<td width='80'>;$password</td>;";
- echo "<td width='50'>;$level</td>;";
- echo "<td width='50'>;$time</td>;";
- echo "<td width='10' align=center>;<a
- href='admin_ad_del.php?'.SID.''>;删除</a>;</td>;";
- echo "<td width='10' align=center>;<a
- href='admin_ad_edit.php?'.SID.''>;编辑</a>;</td>;";
- echo "</tr>;";
- }while($row=mysql_fetch_array($result));
- ?>;
- </table>;<br>;
- <?php
-
- $rquery="select count(id) as ids from admin";
- $rresult=mysql_query($rquery,$conn);
- $rrow=mysql_result($rresult,0);
- $all=ceil($rrow/$page);
- $ascpage=$a/$page;
- if($ascpage==0){ $ascpage=1; } else { $ascpage+=1; }
- if($a<=$page) { $up=0; } else { $up=$a-$page; }
- $down=$a+$page;
- if($down>;$rrow){ $down=$a; }
- $last=($all*$page)-$rrow;
- $last=$page-$last;
- $last=$rrow-$last;
- echo "<div align=center>;共有 $rrow 个管理员 每页显示 $page 个 当
- 前第 $ascpage 页 共有 $all 页 <a href=$_PHPSELF?a=0>;第一页</a>; <a
- href=$_PHPSELF?a=$up>;上一页</a>; / <a href=$_PHPSELF?a=$down>;下一页
- </a>; <a href=$_PHPSELF?a=$last>;最后页</a>;</div>;";
- echo "</td>;";
- echo "</tr>;";
- ?>;
复制代码
我一共有4个数据
我把$page=2;以后 它分为了两个页面 我点下一页的时候 他却显示的是第一个页面的数据 不能正确显示第二个页面的数据
全局变量关闭 第二页a的值=2
我用的是 PHP5+APACHE2[/code] |
|