-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathuser_edit.php
78 lines (66 loc) · 2.41 KB
/
user_edit.php
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
<?php
require('checkallowed.php'); // No direct access
$url_id = $GPXIN['id'];
// Get user info
$result_usr = @mysql_query("SELECT
id,
first_name,
last_name,
username,
email_address
FROM users
WHERE
id = '$url_id'
LIMIT 1") or die('Failed to query for users: '.mysql_error());
while($row_usr = mysql_fetch_array($result_usr))
{
$usr_id = $row_usr['id'];
$usr_fname = $row_usr['first_name'];
$usr_lname = $row_usr['last_name'];
$usr_usrname = $row_usr['username'];
$usr_email = $row_usr['email_address'];
}
?>
<div class="infobox" style="display:none;"></div>
<table border="0" cellpadding="2" cellspacing="0" width="700" class="cfg_table" style="margin-top:20px;">
<tr>
<td width="150"><b><?php echo $lang['username']; ?>:</b></td>
<td><input type="text" value="<?php echo $usr_usrname; ?>" id="username" class="inputs" /></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['cur_password']; ?>:</b></td>
<td><input type="text" value="" id="pass_orig" class="inputs" /></td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['newpassword']; ?>:</b></td>
<td><input type="text" value="" id="pass1" class="inputs" /></td>
</tr>
<tr>
<td width="150"><?php echo $lang['newpassword_conf']; ?>:</td>
<td><input type="text" value="" id="pass2" class="inputs" /></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['email_address']; ?>:</b></td>
<td><input type="text" value="<?php echo $usr_email; ?>" id="email" class="inputs" /></td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['first_name']; ?>:</b></td>
<td><input type="text" value="<?php echo $usr_fname; ?>" id="fname" class="inputs" /></td>
</tr>
<tr>
<td width="150"><b><?php echo $lang['last_name']; ?>:</b></td>
<td><input type="text" value="<?php echo $usr_lname; ?>" id="lname" class="inputs" /></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
</table>
<div align="center">
<div class="button" onClick="javascript:user_edit(<?php echo $url_id; ?>);"><?php echo $lang['save']; ?></div>
</div>