Quote:
Originally Posted by barodapride
Alright I just want to know how to go about doing this...I'm pretty sure I have to use a database somehow. I'm pretty new at the whole webdev stuff. I just want to have a poll that will come up on my website that will be a yes or no question people can answer and store/display the results. How can I make a database to hold a bunch of different polls like this? What are the steps I need to take to get this done? Help appreciated!!! Thanks!
|
There might be some open source wiki set up to do this.
If you want to be able to store user input, even as simple as yes or no, then you need to set up some programming, and either use a database, or work out a (more complex) solution with XML or some other type of files.
At a minimum, you would need a table for users, polls, and user votes.
|