I have a page for member that forget his/her password. When they input the email address, they receive an email with a new, temp password. What I would like to do is something like this:
from email:
http://domain.com/changepw.php?member_email=name@email.com
code from changepw.php:
<tr>
<td width="197" height="34" class="right">Enter Email: </td>
<td width="209"><input type="text" name="<?php echo($_GET['member_email']); ?>" id="email" /></td>
</tr>
Obviously, I can't get it work. However, is it possible to autofill a portion of a form from a link with actually submitting an action?