Ok, here's a small update: those of you having the 350 error problem, download and then upload the ORIGINAL
quiz.php file -- the one from the archive in the very first post in this thread. Then change this...
PHP Code:
$question_number = $HTTP_POST_VARS[question];
$answer_count = $DB_site->num_rows($answers);
$num = $HTTP_POST_VARS[question] + 1;
...to this...
PHP Code:
$question_number = $_POST["question"];
$answer_count = $DB_site->num_rows($answers);
$num = $_POST["question"] + 1;
I think that the problem is with NEWER versions of PHP, rather than OLDER ones. I believe it has something to do with the
register_globals setting, but I'm not sure. Anyhoo, give the above code change a try and let me know if it helps...