-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathedit.php
More file actions
22 lines (16 loc) · 672 Bytes
/
Copy pathedit.php
File metadata and controls
22 lines (16 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<title>edituser</title>
</head>
<body>
<h1 align="center">Edit user:<?php echo $_REQUEST["Name"];?></h1>
<form method="post" action="change.php">
<table border="1" align="center">
<tr><td>Name:</td><td><input type="text" name="newname" value="<?php echo $_REQUEST['Names'];?>"></td></tr>
<tr><td>Pwd:</td><td><input type="submit" name="newpassword" value="<?php echo $_REQUEST['Pwds'];?>"></td></tr>
<tr><td>Email:</td><td><input type="text" name="newemail" value="<?php echo $_REQUEST['Emails'];?>"></td></tr>
<input type="submit" value="Save & Update"/>
<input type="hidden" name="id" value="<?php echo $_REQUEST['ids'];?>">
</form>
</body>
</html>