Hi all,
I have created a html quiz which involves the user answering 5 multiple choice questions.
When the user hits submit I want his/her selections to be recorded in a database.
How do I do this?
Thanks.
Kevin.
Look for some PHP tutorial and the topics that will probably interest you are: - $_POST[] array to retrieve data from a form - database routines (mysql_connect() for a start). - SQL queries (some other tutorial) to actualy put the data into database.