-
Notifications
You must be signed in to change notification settings - Fork 3
/
add.php
41 lines (37 loc) · 1.39 KB
/
add.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<title>文章管理系统</title>
</head>
<body>
<center>
<?php include("menu.php");//导入导航栏 ?>
<h3>发布文章</h3>
<form action = "action.php?action=add" method="post">
<table width="320" border="1">
<tr>
<td align="right">标题:</td>
<td><input type="text" name="title"/></td>
</tr>
<tr>
<td align="right">关键字:</td>
<td><input type="text" name="keywords"/></td>
</tr>
<tr>
<td align="right">作者:</td>
<td><input type="text" name="author"/></td>
</tr>
<tr>
<td align="right" valign="top">内容:</td>
<td><textarea cols="25" rows="5" name="content"></textarea></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="添加"/>
<input type="reset" value="重置"/>
</td>
</tr>
</table>
</form>
</center>
</body>
</html>