do you really need a databace to create those fit the catigory polls, were it gives you results based on what you chose for options, but does not store them?
as in a quiz?
you could make one of them without a database, although it would be more efficient with the database i imagine. it's not really a poll. a poll would be offering several choices and recording selections people have submitted.
if you don't want to store anything, you don't really need a database, but it's much cleaner coding if you do.
you can store your information in a session-cookie (eg. in php), but that way you'll only have the information from one user. so you can't do these "what/who would you chose" kind of polls, but for a quiz it should work that way.
I suppose it is doable via javascript and cookies - but you probably cannot produce output from polls that will last for a long time.
For database, I suppose mysql or whatever is the best.
BTW - there are free poll services out there, which you can use to integrate in your website design! I had something called Alxpoll on an old website I created back in highschool. As long as the FORM info was intact, I could style the appearance of the poll myself, and I could configure the results page to some extent as well. Since databases requires quite a bit of know-how - I would recommend the prebuilt option for you - unless you are building a commercial website.
You can use a *.txt file for the database, updated by a PHP or CGI script. Polls don't need anything fancy. Even huge polls with anonymous voting would have a tiny database.
You could even have the script update the HTML results directly.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.