Hi
I have a form which allows users to input an image and some data. I want to allow them to verify the info, and give them a chance to alter image \ info before validating and storing the image date on the server.
in the form I have two input boxes
<input type="submit" name = "reset" value="Reset" /></tr>
<input type="submit" name = "store" value="Store" /></tr>
How can i find which of the input types has been used.
I have tried to find it using
$value = $_POST['name'];
but this does not seem to work. Can anybody out there point me in the right direction please?
Cheers