Page 1 of 1

Display image in PHP quiz results

Posted: Tue Jun 14, 2011 3:50 pm
by natalia
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:

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>";
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

Re: Display image in PHP quiz results

Posted: Wed Jun 15, 2011 7:04 am
by social_experiment

Code: Select all

$type[2] = "<p>If you answer mostly Cs <img src=\"path/to/file\" />...</p>";
Are you think of something like this?