I am working on a site that has tests users can take. I have a test area set up with 100 questions on each subject. If a user is taking a test, I want them to be able to save the work they have already done and when they return I want them to be able to continue the work from where they left. The questions being answer are multiple choice questions and they answer them by selecting the radio button and each radio button has a value of A, B, C, D, or E. I am using PHP and MySQL for my programming and database storage.
Would I need a table for each test and have 100 column names such as 1,2,3,4,5 all the way up to one hundred and when the user saves their work it will store the questions they have completed in the database? Is this a good method or is their another way of doing this?