-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathedit.inc
99 lines (75 loc) · 2.43 KB
/
edit.inc
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<h1>Edit record</h1>
<p>Use this form to edit <b><?php echo $r["first_name"]?> <?php echo $r["last_name"]?>'s</b> record. <em>Remember, items marked with a red asterisk (<font color=red>*</font>) are required.</em></p>
<center>
<table>
<form action=./ method=post>
<input type=hidden name=cmd value=edit>
<input type=hidden name=id value=<?php echo $r["member_id"]?>>
<tr>
<td align=center colspan=2 bgcolor=silver><b>Name</b> (<a href=./?cmd=delete&id=<?php echo $r["member_id"]?>>delete</a>)</td>
</tr>
<tr>
<td align=right>First name<font color=red>*</font>:</td>
<td><input name=first_name value="<?php echo $r["first_name"]?>"></td>
</tr>
<tr>
<td align=right>Last name<font color=red>*</font>:</td>
<td><input name=last_name value="<?php echo $r["last_name"]?>"></td>
</tr>
<tr>
<td align=center colspan=2 bgcolor=silver><b>Addresses</b></td>
</tr>
<tr>
<td align=right>Address 1<font color=red>*</font>:</td>
<td><input name=address_1 value="<?php echo $r["address_1"]?>"></td>
</tr>
<tr>
<td align=right>Address 2:</td>
<td><input name=address_2 value="<?php echo $r["address_2"]?>"></td>
</tr>
<tr>
<td align=right>City<font color=red>*</font>:</td>
<td><input name=city value="<?php echo $r["city"]?>"></td>
</tr>
<tr>
<td align=right>State<font color=red>*</font>:</td>
<td><input name=state value="<?php echo $r["state"]?>"></td>
</tr>
<tr>
<td align=right>Zip<font color=red>*</font>:</td>
<td><input name=zip_code value="<?php echo $r["zip_code"]?>"></td>
</tr>
<tr>
<td align=right>Email address<font color=red>*</font>:</td>
<td><input name=email value="<?php echo $r["email"]?>"></td>
</tr>
<tr>
<td align=right>Telephone<!-- font color=red>*</font -->:</td>
<td><input name=telephone value="<?php echo $r["telephone"]?>"></td>
</tr>
<tr>
<td align=center colspan=2 bgcolor=silver><b>Demographics</b></td>
</tr>
<tr>
<td align=right>Member ID:</td>
<td><?php echo $r["member_id"]?></td>
</tr>
<tr>
<td align=right>Occupation<!-- font color=red>*</font -->:</td>
<td><input name=occupation value="<?php echo $r["occupation"]?>"></td>
</tr>
<tr>
<td align=right>Employer<!-- font color=red>*</font -->:</td>
<td><input name=employer value="<?php echo $r["employer"]?>"></td>
</tr>
<tr>
<td align=right>Year of birth<!-- font color=red>*</font -->:</td>
<td><input name=birth_year value="<?php echo $r["birth_year"]?>"></td>
</tr>
<tr>
<td></td>
<td><input type=submit name=submit value=Submit> <input type=reset><td>
</tr>
</form>
</table>
</center>