Ok i am trying to make a password recovery page in php.
I have already made the registration where you enter an identification number.
then if you have forgotten your password, just enter the username and the identification number you registered with, it would display the password.
i already have the design and stuff ready.
heres the code i have:
all i need is the processing of the username and the identification number to display the password, so if someone could be kind enough to post a code, that would help alot.PHP Code:<form action="?op=recover" method="post">
<p>Password Recovery</p>
<table width="200" border="0">
<tr>
<td>Username:</td>
<td><input name="user" type="text" class="liteoption" id="user" size="15" maxlength="15" />
*</td>
</tr>
<tr>
<td>ID Number:</td>
<td><input name="identify" type="text" class="liteoption" id="identify" size="15" maxlength="5" />
*</td>
</tr>
</table>
<p><input name="submit" type="submit" class="liteoption" value="Submit" /></p>
</form>
