Hello.
Here's my example form:
<form method="get" action="">
<p>
<input type="radio" name="radio_exa mple" id="radio1"
value="radio1_v al" />
<label for="radio1">ra dio button one</label>
</p>
<p>
<input type="radio" name="radio_exa mple" id="radio2"
value="radio2_v al" />
<label for="radio2">ra dio button two</label>
</p>
<p>
<input type="submit" name="submitfor m" id="submitform "
value="caption" />
</p>
</form>
When submitting this form with the specified GET method you'll get an
URL like this (http://foo.bar/form.php being the form's URL):
Now I want to avoid that the submit button's value is also passed to
the URL, so I would only get this URL when submitting the form:
Is this possible?
Here's my example form:
<form method="get" action="">
<p>
<input type="radio" name="radio_exa mple" id="radio1"
value="radio1_v al" />
<label for="radio1">ra dio button one</label>
</p>
<p>
<input type="radio" name="radio_exa mple" id="radio2"
value="radio2_v al" />
<label for="radio2">ra dio button two</label>
</p>
<p>
<input type="submit" name="submitfor m" id="submitform "
value="caption" />
</p>
</form>
When submitting this form with the specified GET method you'll get an
URL like this (http://foo.bar/form.php being the form's URL):
Now I want to avoid that the submit button's value is also passed to
the URL, so I would only get this URL when submitting the form:
Is this possible?
Comment