How to Modify a Charity Khan Quiz

Quizzes created with Charity Khan's Quiz Creator are great for creating practice quizzes, however, they do not forward quiz scores to any predetermined e-mail address. But, you can change this shortcoming by changing the following lines of code. To do this you will need to open up the quiz .htm file created by the Quiz Creator in Wordpad and change the following lines of code.

From:
<form name="quiz">
To:
<form name="quiz" ACTION="mailto:your@e-mail.address" METHOD=POST ENCTYPE="text/plain">

and...

From:
<input type="button" value="Get score" onClick="getScore(this.form)">
To:
<input type="submit" value="Get score" onClick="getScore(this.form)">