I am trying to create an educational app where there is a quiz.
Is it possible to record scores and have them read back when the student has finished the quiz?
Or does this have to done in PHP/Javascript?
thanks
I am trying to create an educational app where there is a quiz.
Is it possible to record scores and have them read back when the student has finished the quiz?
Or does this have to done in PHP/Javascript?
thanks
There’s no built-in functionality for this; you will ultimately need javascript code though it can be integrated with existing designs. This isn’t uncommon and there’s a lot of tips/examples for quizzes in the forums that should turn up via search.
Ultimately if you want a permanent record of quizzes, you will need to communicate to a server. It doesn’t have to be PHP, but that is a popular/easy route.
Here’s one... Free Template Tuesday #7 – Tumult Hype “Capitals” – Photics.com
The example shows how to do the JavaScript part, so that’s like half the battle. Heh, the easy half. Writing the results to a server is another problem.