Hello,
I have been asked to build a form, each answer is a yes or no answer and have been asked to have a checkbox for each answer. I have around 81 questions.
I have been given a "rules template" This is the way it works, for example if checkbox number 1 is checked and checkbox number 4 is checked then there is a conflict.
What I am trying to do is to build a form for the users so they can answer the questions. I have this no problem.
Then another page for the admin so he/she can see the answers of all the users, I can also build this.
I plan to have a table with questionid, question
Then a users table with username, userid, email
And then a table for the answers user, questionid, answer, conflictfield
My question would be
for my "conflictfield" would I have to do something like this for the value
Thanks!!
I have been asked to build a form, each answer is a yes or no answer and have been asked to have a checkbox for each answer. I have around 81 questions.
I have been given a "rules template" This is the way it works, for example if checkbox number 1 is checked and checkbox number 4 is checked then there is a conflict.
What I am trying to do is to build a form for the users so they can answer the questions. I have this no problem.
Then another page for the admin so he/she can see the answers of all the users, I can also build this.
I plan to have a table with questionid, question
Then a users table with username, userid, email
And then a table for the answers user, questionid, answer, conflictfield
My question would be
for my "conflictfield" would I have to do something like this for the value
Code:
if answers.question1=yes and answers.question2=yes then response.write("conflict") end if
Thanks!!