poll management

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
bvrao
Forum Newbie
Posts: 2
Joined: Fri Aug 04, 2006 4:32 am

poll management

Post by bvrao »

hi,
this is bvrao. i want php code for poll management
please help.
thanks.
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

User avatar
ronverdonk
Forum Commoner
Posts: 34
Joined: Sat Jun 10, 2006 7:06 am
Location: Netherlands

Post by ronverdonk »

Look at the MiniPoll class at phpclasses.org, link http://www.phpclasses.org/browse/package/1453.html
This package is meant to create online surveys. It lets you create Web based polls with a single question for which the users can only pick one answer of multiple answers. There is no limit of possible answers per poll.

The poll questiom, the possible answers and the respective vote count are store in MySQL database tables.

The system does not require authentication nor keeps track of the address of the users but has protection to prevent that users of the same IP address vote more than once for a given period.

The class can generate HTML forms presenting a poll in a Web page, as well display the table of the current results.

A separate class can generate a HTML based Web interface to create, activate and delete polls.
Post Reply