<html> <font face='verdana' color='#00066' size=5><strong>Edit User</strong> <form ACTION="query_edit_user.php" method=GET> <p> <?php require '../config.php'; echo "<input type=hidden name=user_id value=$user_id size=30 maxlength=100>"; echo "<table summary=''>"; echo "<tr>"; echo "<td>Username:</td>"; echo "<td>Password:</td>"; echo "<td>Full Name:</td>"; echo "</tr>"; echo "<tr>"; echo "<td><input type=text name=username value='$username' size=30 maxlength=100></td>"; echo "<td><input type=password name=password value='$password' size=30 maxlength=100></td>"; echo "<td><input type=text name=fullname value='$fullname' size=30 maxlength=100></td>"; echo "<td><input type='submit' value='Edit' name='edit'></td>"; echo "</tr>"; echo "</table>"; ?>