I changed your code to submit the form automatically when you click on the radio button.
The onClick attribute tells the browser what to do when somebody clicks the element. The contents of the attribute is JavaScript code. It tells the browser that it should take the document, find the first form, and submit it.
If you need to submit another form, increase the number in square brackets.
HTML Code:
<form method="post" action="address">
<input type="hidden" name="poll_id" value="poll name">
<table align=center style="font-family:Tahoma; font-size:12pt" width=304 border=1>
<tr><th align=center>Vote</td></tr>
<tr><td><input type='radio' name='vote' value='9' checked="checked" onClick="document.forms[0].submit()"> button name
<input type='submit' value=' Vote ! '></td></tr>
<tr><td align=center style='font-family:Tahoma; font-size:10pt'></tr>
</table>
</form>
Bookmarks