View Single Post
(#3 (permalink))
Old
giloosh99 is Offline
Private
Points: 152, Level: 2 Points: 152, Level: 2 Points: 152, Level: 2
Activity: 0% Activity: 0% Activity: 0%
giloosh99 is an unknown quantity at this point
 
 
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
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

}
?>