Display image in PHP quiz results
Posted: Tue Jun 14, 2011 3:50 pm
Hi,
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:
I was wondering how I could embed a .jpg after each $type so that an image appears before the description in the results...
Thank you
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