Hi,
I have a problem with my form (php file). If I start entering values into the form fields and click on "reset" buttons, it clear the fields already filled in. If I populate the form based on a database query and then click on reset button, nothing happens!
Do I have to individually unset all the variables I assigned when I did the DB query, or am I missing something (probably the case!)
After DB query, I have:
$Name = $result['Name'];
Then in the form:
<input type="text" name="Name" value="<?php echo $Name ?>" />
Thanks a lot.