<form action= $_SERVER['PHP_SELF']
//form elements here...
<input type=\"submit\" name=\"submit\" value=\"submit form\">
<input type=\"submit\" name=\"resetform\" value=\"reset form\">
</form>
once submit is clicked, I use isset to check their values like the person in the last post indicated..
if(isset($POST['resetform']))
$POST=array(); //resets all values in the $_POST array
if(isset($_POST['submit']))
//your code to handle the submitted form elements here...
hope this helps..
-jk