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

📄 displaybook.php

📁 图书管理系统的代码,是一个不错的东东哦 用户名为ADMIN为管理员
💻 PHP
字号:
<form name="form1" method="post" action="<?php echo url("Admin","Lend"); ?>">
  <table width="60%" border="0" cellspacing="1" cellpadding="3" align="center">
    <tr> 
      <th colspan="2">借 书 登 记</th>
    </tr>
    <tr> 
      <td width="30%" height="32" align="right">图书编号:</td>
      <td width="70%" height="32"><?echo $bookinfo['id']?>
	  <input type="hidden" name="book_id" value="<? echo $bookinfo['id'];?>">
	  <input type="hidden" name="book_title" value="<? echo $bookinfo['title'];?>">
      </td>
    </tr>
    <tr> 
      <td width="30%" align="right">书名:</td>
      <td width="70%"><? echo $bookinfo['title'];?></td>
    </tr>
    <tr> 
      <td width="30%" align="right">作者:</td>
      <td width="70%"><? echo $bookinfo['author'];?></td>
    </tr>
    <tr> 
      <td width="30%" align="right">出版社:</td>
      <td width="70%"><? echo $bookinfo['publisher'];?></td>
    </tr>
    <tr> 
      <td width="30%" align="right">出版年份:</td>
      <td width="70%"><? echo $bookinfo['publish_year'];?></td>
    </tr>
    <tr> 
      <td height="23" align="right">总共:<? echo $bookinfo['total'];?>本;</td>
      <td height="23">库存剩余:<? echo $bookinfo['leave_number'];?>本</td>
    </tr>
    <tr> 
      <td width="30%" align="right">借阅用户ID:</td>
      <td width="70%"> 
        <input type="text" name="user_id" size="10">
      </td>
    </tr>
    <tr> 
      <td width="30%" align="right"> 
        <input type="submit" name="lend" value="借出">
      </td>
      <td width="70%"> 
        <input type="reset" name="Submit2" value="重置">
      </td>
    </tr>
  </table>
</form>

⌨️ 快捷键说明

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