1
0
Fork 0
php-coding/18.test3.php

39 lines
1.2 KiB
PHP

<!--包含18.work1work2的内容-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>图书管理</title>
</head>
<body>
<!--add data-->
<form method="post" action="api/18.test3.api.php">
<table>
<tr>
<td><label for="bookname">书名:</label></td>
<td><input type="text" name="bookname" id="bookname" required></td>
</tr>
<tr>
<td><label for="price">价格:</label></td>
<td><input type="number" name="price" id="price" required></td>
</tr>
<tr>
<td><label for="pubdate">出版时间:</label></td>
<td><input type="date" name="pubdate" id="pubdate" required></td>
</tr>
<tr>
<td><label for="sort">所属类别:</label></td>
<td><input type="text" name="sort" id="sort" required></td>
</tr>
<tr>
<td colspan="2" style="text-align: center">
<input type="submit" value="添加图书" name="add">
<input type="reset" value="重置" name="reset">
</td>
</tr>
</table>
</form>
<a href="18.test3.result.php">点此查看结果</a>
</body>