I need a Poll script...

cherii

New Member
Messages
8
Reaction score
0
Points
0
I need a script that allows people to vote for one person per category, like an awards ceremony thing. There are several categories and about 6 people nominated for each one. There are around 10-11 categories. Are there any scripts out there that can do this, and the results don't get displayed until the voting is finished or something? I've tried looking around, but I don't think there are any scripts out there that can do all this, unless it gets customized.

Help?
 

rickle42

New Member
Messages
59
Reaction score
0
Points
0
I think you just need a bunch of radio buttone right? As far as keeping up with the tally I cant think of a way other than putting it into a database.
This is very, very easy you can just add a table to an existing database for this unless you dont have one.
So just have a big form with 10-11 sets of radio buttons and a submit button. Then put in form tag <form method="get" (i cant use post, so i use get all the time) action="addToDataBaseMadeUpName.php".

Then in that php file just connect to the database and add 1 to all the selected names. Yes I know this may sound like garbage to you but i tried....:(
 
Top