|
January 1st, 2008
when you click the reset button you could change the value of a hidden input field.
for example:
when you reset the form change the value of the hidden text field to 1.
in php just check that hidden input field for the value of 1
<?
if($_POST['hidden_field'] !=1){
//the form was not reseted
}
?>
|