-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathexample1.html
More file actions
51 lines (49 loc) · 1.06 KB
/
Copy pathexample1.html
File metadata and controls
51 lines (49 loc) · 1.06 KB
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
40
41
42
43
44
45
46
47
48
49
50
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
</head>
<body>
<fieldset>
<legend>
GET
</legend>
<form action="./example2.php" method="GET">
<p>
닉네임 :
<input type="text" name="nickname" />
<br />
</p>
<p>
직업 :
<select name="job">
<option value="designer">디자이너</option>
<option value="programmer">프로그래머</option>
<option value="planner">기획자</option>
</select>
</p>
<input type="submit" value="전송"/>
</form>
</fieldset>
<fieldset>
<legend>
POST
</legend>
<form action="./example2.php" method="POST">
<p>
닉네임 :
<input type="text" name="nickname" />
<br />
</p>
<p>
직업 :
<select name="job">
<option value="designer">디자이너</option>
<option value="programmer">프로그래머</option>
<option value="planner">기획자</option>
</select>
</p>
<input type="submit" value="전송"/>
</form>
</fieldset>
</body>
</html>