I know, this might be a very basic question but I am not 100% sure on the topic.

When submitting forms, is there a precise value that needs to be passed in order to inform that a certain button was pressed...

or can any value be passed in relation to the submit button's name?


Any ideas?


Edit:

Thank guys! I found out how to deal with the problem.

As variables are passed to the servers and are pretty much open to interpretation, depending on how they are read by the server,

I just decided to check the data being posted on various forms and just decided to mimic them.

Everything works now, thanks for your help!

link|improve this question

74% accept rate
Are you trying to build a browser or a server? – SLaks Apr 19 '10 at 11:48
@SLaks browser/scraper! – RadiantHex Apr 19 '10 at 15:13
feedback

2 Answers

up vote 1 down vote accepted

You should pass the <input type="submit">'s value attribute.

For example, if the user clicks the following submit button, the browser must send GoNext=Next+Step

<input type="submit" name="GoNext" value="Next Step" />

For more information, read the specification

link|improve this answer
feedback

You could pass any value and you can check based on various possibilities whether form was submitted. For example, this is how we check in php whether or not form was submitted:

<input type="submit" name="submit" value="whatever" />

if (isset($_POST['submit']))
{
  // form was submitted !!
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.