How to display questions in batch

3 replies
Hi everyone,
I'm creating a computer based test application(cbt) with php and mysql.
I want to ask. How do i display the questions in batches, like, Mathematics, how do i display 15 questions in separate pages when i have a total of 50 questions in mathematics and still be able to submit all of them with one input button?
#batch #display #questions
  • Profile picture of the author David Beroff
    The easiest thing to do is to pass the prior responses as hidden fields. Better to manage them in your database for a given session, but that's not absolutely necessary.
    Signature
    Put MY voice on YOUR video: AwesomeAmericanAudio.com
    {{ DiscussionBoard.errors[8971889].message }}
  • Profile picture of the author sautaja
    You can have a few DIVs, where each div represents a page and has 15 questions. All divs are hidden by default except the first one. Then make a 'Next' button below each div and have a click event listener for it. Once clicked, the script will hide all DIVs and unhide the next DIV, or page. At the last page user can simply do a post submission.
    Signature
    Jomify - Free multi-channel shopping cart. Open your free store now.
    {{ DiscussionBoard.errors[8973566].message }}
  • Profile picture of the author heroecitadel
    Thank you very much sautaja, that was great!
    {{ DiscussionBoard.errors[8973874].message }}

Trending Topics