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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
<?php
global $db;
if(isset($_POST['processed'])){
echo "Please wait while the information is processed...";
$rank_id = $_POST['rank'];
$country_id = $_POST['country'];
$status_id = $_POST['status'];
$role_id = $_POST['role'];
$unit_id = $_POST['unit'];
$weapon_id = $_POST['weapon'];
$first_name = addslashes($_POST['first']);
$last_name = addslashes($_POST['last']);
$username = addslashes($_POST['username']);
$city = addslashes($_POST['city']);
$province = addslashes($_POST['province']);
$primary_mos = addslashes($_POST['primmos']);
$enlisted = addslashes($_POST['enlist']);
$promoted = addslashes($_POST['promote']);
$discharged = addslashes($_POST['discharge']);
$xfire = addslashes($_POST['xfire']);
$email = addslashes($_POST['email']);
$bio = addslashes($_POST['bio']);
//$discharged = empty($discharged) ? NULL : "'{$discharged}'";
$query = "INSERT INTO `rudi_unit_members` SET"
." `rank_id` = '$rank_id',"
." `country_id` = '$country_id',"
." `status_id` = '$status_id',"
." `cunit_id` = '$unit_id',"
." `weapon_id` = '$weapon_id',"
." `username` = '$username',"
." `email` = '$email',"
." `xfire` = '$xfire',"
." `first_name` = '$first_name',"
." `last_name` = '$last_name',"
." `location_city` = '$city',"
." `location_province` = '$province',"
." `bio` = '$bio',"
." `date_enlisted` = '$enlisted',"
." `date_promotion` = '$promoted',"
." `primary_mos` = '$primary_mos',";
if(empty($discharged))
$query = $query." `date_discharged` = null";
else
$query = $query." `date_discharged` = '$discharged'";
decho($query);
$db->Query($query);
$member_id = $db->InsertID();
decho($member_id);
$db->Query("INSERT INTO `rudi_roles_container` SET `role_id` = '$role_id', `member_id` = '$member_id'");
PageRedirect(1, "?op=rudi&show=members");
return;
}
?>
<a href="?op=rudi&show=members">Cancel</a><br />
<form method="POST" action="">
<table width="100%" style="text-align:center;">
<tr><th colspan="2" style="background-color:#c4c4c4;">Personnel File of <?php echo $member['first_name']." ".$member['last_name']; ?></th></tr>
<tr><td class="right" width="50%">Rank:</td><td class="left">
<select name="rank">
<?php $ranks = GetRanks();
foreach($ranks as $rank){
echo "<option value=\"{$rank['rank_id']}\">{$rank['longname']}</option>";
}
?>
</select>
</td></tr>
<tr><td class="right">Country:</td><td class="left">
<select name="country">
<?php $countries = GetCountry();
foreach($countries as $country){
echo "<option value=\"{$country['country_id']}\">{$country['name']}</option>";
}
?>
</select>
</td></tr>
</table>
<table width="100%" style="text-align:center;">
<tr><th colspan="2" style="background-color:#c4c4c4;">Vital Statistics</th></tr>
<tr>
<td class="right" width="50%">First:</td>
<td class="left"><input type="text" name="first" value="" /></td>
</tr>
<tr>
<td class="right">Last:</td>
<td class="left"><input type="text" name="last" value="" /></td>
</tr>
<tr><td class="right">Username:</td><td class="left"><input type="text" name="username" value="" /></td></tr>
<tr><td class="right">City:</td><td class="left"><input type="text" name="city" value=""/></td></tr>
<tr><td class="right">Province:</td><td class="left"><input type="text" name="province" value="" /></td></tr>
<tr><td class="right">Status:</td><td class="left">
<select name="status">
<?php $statuses = GetStatuses();
foreach($statuses as $status){
echo "<option value=\"{$status['status_id']}\">{$status['name']}</option>";
}
?>
</select>
</td></tr>
<tr><td class="right">Primary MOS:</td><td class="left"><input type="text" name="primmos" value="" /></td></tr>
<tr>
<td class="right">Role:</td>
<td class="left">
<select name="role">
<?php
$roles = GetRoles();
foreach($roles as $role){
echo "<option value=\"{$role['role_id']}\">{$role['name']}</option>";
}
?>
</select>
</td>
</tr>
<tr>
<td class="right" style="font-weight:bold;">Unit:</td>
<td class="left">
<select name="unit">
<option value="0">N/A</option>
<?php
$result = $db->Query("SELECT `unit_id`, `name` FROM `rudi_combat_units` WHERE `detachment` = 0 ");
$row = $db->Fetch($result);
foreach($row as $unit){
$unit_name = $unit['name'];
$unit_id = $unit['unit_id'];
if($member['cunit_id']==$unit_id)
echo '<option value="'.$unit_id.'" selected>'.$unit_name.'</option>';
else
echo '<option value="'.$unit_id.'">'.$unit_name.'</option>';
selectUnits($unit_id, 0, $member['cunit_id']);
}
?>
</select>
</td>
</tr>
<tr><td class="right">Weapons:</td><td class="left">
<select name="weapon">
<?php $weapons = GetWeapons();
foreach($weapons as $weapon){
echo "<option value=\"{$weapon['weapon_id']}\">{$weapon['model']}</option>";
}
?>
</select>
</td></tr>
<tr>
<td class="right">Enlisted Date:</td>
<td class="left"><input type="text" name="enlist" value="" /></td>
</tr>
<tr>
<td class="right">Promotion Date:</td>
<td class="left">
<input type="text" name="promote" value="" />
</td>
</tr>
<tr>
<td class="right">Discharge Date:</td>
<td class="left"><input type="text" name="discharge" value="" /></td>
</tr>
<tr>
<td class="right">Xfire:</td>
<td class="left"><input type="text" name="xfire" value=""/></td>
</tr>
<tr>
<td class="right">E-Mail:</td>
<td class="left"><input type="text" name="email" value=""/></td>
</tr>
</table>
<br />
<table width="100%" style="text-align:center;">
<tr><th colspan="2" style="background-color:#c4c4c4;">Personal Bio</th></tr>
<tr><td><textarea rows="7" name="bio" cols="60"></textarea></td></tr>
<tr><td colspan="2"><input type="submit" value="Submit" name="processed" /></td>
</table>
</form>
|