|
|
 |
RE: FN-FORUM: Stupid question
date posted 3rd October 2006 16:13
> value="Update Booking" title="Update the Booking"
> onClick="JavaScript: return validate_form();"> name="Submit" type="submit" class="dropdowns" value="Delete
> Booking" title="Delete the Booking">
>
> I tried testing the value of $_POST['Submit'] but it doesn't
> find anything.
You've got 2 'Submit' buttons. Try renaming them to (for example)
name='Submit1' and name='Submit2'. That way, isset($_POST['Submit1']) will
tell you if it's been clicked or not.
HTH
Edward
|
 |
|