-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserForm.php
More file actions
59 lines (25 loc) · 1.1 KB
/
userForm.php
File metadata and controls
59 lines (25 loc) · 1.1 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
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<?php require_once('title.php'); ?>
</head>
<body>
<?php include('form1.php'); ?>
<!--<form action="handle.php" method="post">
<p> <label for="name">Name: </label><input type="text" id="name" name="name" size="20" maxlength="40"> <p/>
<p> <label for="email">Email: </label><input type="email" id="email" name="email" size="20" maxlength="40"> <p/>
<p> Gender:
<input type="radio" name="gender" id="male" value="M"><label for="male" >Male</label>
<input type="radio" name="gender" id="female" value="F"><label for="female">Female</label> <br/> <p/>
<p>
<label for="age">Age:</label><select name="age" id="age">
<option value="0-29">Under 30<option/>
<option value="30-60">Between 30 and 60<option/>
<option value="60+">Over 60<option/>
<select/> <p/>
<label for="comment">Comments: </label><textarea name="comment" id="comment" cols="40" rows="3"></textarea>
<p/>
<p> <input type="submit" name="submit" value="Submit"> <p/>
</form>-->
</body>
</html>