Hi guys,
I would like to create a save button on the final page so when the user clicks save, the quiz information is stored into the database. i.e. SCORE from quiz
How could i do this?
🙂
Thanks
Pick your favorite DBMS (MySQL is a common choice) that is available to you.
Pick your favorite DB library in PHP, e.g. [man]MySQLi[/man] or [man]PDO[/man].
Decide what information you need to store, how that information is related, and then design a database schema that models this data and its relations.
Use the library you picked in #2 above to INSERT the necessary data into the table(s) you've designed above in #3.
If you want something more specific than that, you'll have to ask some more specific questions.