php - I want to create a website for polls/survey like this http://www.poll-maker.com/ -
but did not understand
the concept of generating link &
more importantly how save data in database,do save id of poll & yes/no click or done other logic.
what happen polls expired? remain in database or somewhere else?
please help
to handle url can use curl.
but have easy method. can use concept of query strings.
to create new question
store new question in database.give each question unique id.
then after user submits questions show him link like:
http://do-survey.com?question=xzxsa
to store polls
get question like: if(isset($_get['question'])) { $question = $_get['question']; // have question unique id manipulate database using }
Comments
Post a Comment