I have a multiple choice quiz made up of a number of files:
- quiz.html - all the questions
- quiz.qz - the file containing all the php code (including the results)
- quizresults.php - the file that calculates & shows the results
- styles.css
I'm having trouble showing an image in the results. The code is as follows:
Code: Select all
echo '<head>';
echo ' <link rel="stylesheet" href="styles.css" type="text/css">';
echo '</head>';
$title="Quiz: ---";
$types="5";
$questions="16";
$type[0] = "<p>If you answer mostly As...</p>";
$type[1] = "<p>If you answer mostly Bs...</p>";
$type[2] = "<p>If you answer mostly Cs...</p>";Thank you