The First Year Quiz
This quiz consists of a total of 87 questions and for each case, you will type in your answer/finding/diagnosis. Some cases will have a diagnosis (for example, appendicitis, subdural hematoma, distal radius fracture) whereas other cases will have a sign that is important to be conveyed to the clinician (for example, free intraperitoneal air on a plain film radiograph). Most cases do not have a differential diagnosis but if you feel a differential is appropriate, you can include it in. Results will be emailed at a later date, and we will review the quiz prior to your class taking overnight call. Good luck! 
To take the Quiz, please click on the link below
|
".
" This page is automatically called by quiz file (*.swf) when someone has finished the exam and submitted results, ".
"it does not require entering an URL in the web browser to call this page. If you want to collect the results from quizzees, ".
"you should go to QuizCreator -> Quiz Properties -> Result, and then fill in URL field of \"Post Test Results to Web Database\", ".
"with the link to this page, for instance, http://.../get.php. Further, you have to upload crossdomain.xml and the other files ".
"wich located in the same directory of crossdomain.xml to your server, it would be even better for you to place crossdomain.xml ".
"to the root directory of your web server. You will be able to collect data from quizzees after finish the above processes.";
echo $strInfo;
exit();
}
include_once("conn.php");
//The following lines are used to receive the data from quiz player...
$quizId = $_POST["quizId"];
$quizTitle = $_POST["quizTitle"];
$userName = $_POST["userName"];
$userMail = $_POST["userMail"];
$userId = $_POST["userId"];
$userScore = $_POST["userScore"];
$totalScore = $_POST["totalScore"];
$passScore = $_POST["passScore"];
$passState = ($_POST["passState"] == "True") ? 1 : 0;
$strResults = $_POST["quesInfo"];
$strResults = addslashes($strResults);
$postDate = $_POST["postDate"];
//Adding data to the database...
$sql = "INSERT INTO `quiz` (`id`, `quizId`, `quizTitle`, `userName`, `userMail`, `userId`, `userScore`, `totalScore`, `passScore`, `passState`, `Result`, `userDate`, `addDate`) ";
$sql = $sql." VALUES (null, '".$quizId."', '".$quizTitle."', '".$userName."', '".$userMail."', '".$userId."', '".$userScore."', '".$totalScore."', '".$passScore."', '".$passState."', '".$strResults."', '".$postDate."', NOW())";
$rs = mysql_query($sql);
//Feedback for the flash player...
if ($rs) {
echo "feedMsg=Data has been posted successfully";
}
else {
echo "feedMsg=Failed to post data to database";
}
?>
|
|