I created a website for poll, users are meant to register and vote. I created only one table for user's information and commment. below is the columns and rows for the table:
Users:
columns: username password agree_1 reason_1 agree_2 reason_2
rows: paul testing yes NULL no because i don't like it
i decided to make this table this way because the questions are in a (tables) and are over 100 lines each. and again, from the form, if you agree, you will state no reason(that's the reason for the null), but if you disagree, you will have to state your reasons. my question is:
how do i prepare a standard report for such an unplanned database? how do i count the number of people who agreed by saying yes and the number of people who said no? for those who said no, how do i extract their reason?
i want this report to be extracted and displayed using php. Am using mysql and php.