I am constructing survey page for a client, and it's getting extremely long winded.
There are 290 questions and all are required.
This means, typing out huge amounts of stuff, obviously, but, I was wondering if there was a sort of "easier" way to do this.
This survey is one of those types that, like 10 questions are asked, you go to the next page and 10 more questions are asked.
I have method post on these forms and using PHP to pass post values and send to hidden fields.
The database is not filled with the information until the very last page.
So far, I have all of that functionality figured out, but, I need to figure out how to make it so that, if the user skips a question, for them to be told so before going to the next page. Further, all previouse data needs to be saved, without using the database to store it.
The reason for this is because the user can not recieve a user id until finishing the survey.
Any sort of cheat script out there that says "check all fields and see if they aren't null"?
thanks in advance
Sage