|
One good method to prevent multiple uses of a form (in your case to cheat on a quiz), a method used for security and prevent such things like spoofing is to generate, pass and validate a url token in the url parameters. Everytime the quiz form loads up, the session token generates a random string and that string is also passed in the url params. On the processing page, the token is compared and deleted from the session, so only one single instance of that form is allowed to process.
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|