01.
<!doctype html>
02.
<html>
03.
<head>
04.
<meta charset=
"utf-8"
>
05.
<title>Form</title>
06.
</head>
07.
08.
<body>
09.
<form name=
"frm"
method=
"post"
action=
"save.php"
>
10.
<label>Tille:</label> <input type=
"text"
name=
"rank_title"
><br>
11.
<label>Min:</label><input type=
"text"
name=
"rank_min"
><br>
12.
<label>Special:</label>
13.
<input type=
"radio"
name=
"rank_special"
id=
"rank_special1"
value=
"1"
checked=
"checked"
>
14.
<label
for
=
"rank_special1"
>ใช่</label>
15.
<input type=
"radio"
name=
"rank_special"
id=
"rank_special2"
value=
"0"
>
16.
<label
for
=
"rank_special2"
>ไม่ใช่</label><br>
17.
<label>Image:</label><input type=
"file"
name=
"rank_image"
><br>
18.
<input type=
"submit"
name=
"save"
value=
"Save"
>
19.
</form>
20.
</body>
21.
</html>