-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo06.php
35 lines (32 loc) · 982 Bytes
/
demo06.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
<!DOCTYPE html>
/*
* @Author: CasearF [email protected]
* @Date: 2023-09-26 11:21:02
* @LastEditors: CasearF [email protected]
* @LastEditTime: 2023-09-27 16:37:28
* @FilePath: \anquan2201\demo06.php
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="demo07.php" method="post">
<label>学号</label>
<input type="tex
t" name="xuehao">
<br>
<label>名字</label>
<input type="text" name="name">
<br>
<label>班级</label>
<input type="text" name="banji">
<br>
<input type="submit" value="计算">
<input type="reset" value="重置">
</form>
</body>
</html>