|
The image thing is a bit tricky to make compatible. When I built something like that before, I started by just displaying the page with the images and set the image as the label for a radio button (so, clicking on it is the same as clicking the radio button). Then, with javascript, I hid all the radio buttons. That made it work for everyone.
For multiple polls, it really just depends on how you structure the name of the radio buttons. If it's of the form vote[battle_id]=suggested_winner, then you'll have an array of votes you can parse. This has the added advantage of allowing the user to vote for all battles at once. Just be sure to not set radio buttons as initially selected or incorrect votes will be counted.
That's the overall view. For more specific guidance, give it a shot and post your code w/ questions here.
__________________
Jeremy Miller
Please login or register to view this content. Registration is FREE
|