Go to the previous topic.    Go to the next topic.

Configuring the Voting options

type="radio" name="vote" (at least 1)

REQUIRED This will be the means by which the users vote. The values will contain the answer to the poll. These will be displayed in the results page, and should be entered as you would like them displayed.

Example:

<form action="/cgi-bin/poll.cgi" method="post">
<input type="hidden" name="poll_id" value="yesno">
<input type="hidden" name="poll_title" value="Yes, No or Maybe">
<input type="hidden" name="redirrect" value="http://yahoo.com">
<input type="radio" name="vote" value="No"> No <br>
<input type="radio" name="vote" value="Maybe"> Maybe <br>
</form>

This form can be placed anywhere on your site, in any html page, and can be formatted however you like.