Hi
Can you help? I am a Web/Multimedia Designer and someone has very kindly programmed a quiz for me. (multiple answer a bit like "what kind of animal are you" - each answer has a different value and depending on what the user chooses depends on the score and answer). But it's in php which our server doesn't support. I have found a way to convert the questions into html, but not how to convert the results page.
My job is to make the quiz look pretty, so I am not into programming in a big way. I am supposed to have this quiz done by the end of today - can you help? The php3 code for the results page is below:
This conversion software you mention sounds good.
<?
echo"
<body>";
$auswertung4 = ereg_replace("\\","",$auswertung4);
$auswertung3 = ereg_replace("\\","",$auswertung3);
$auswertung2 = ereg_replace("\\","",$auswertung2);
$auswertung1 = ereg_replace("\\","",$auswertung1);
$punkte=$antwort[1]+$antwort[2]+$antwort[3]+$antwort[4]+$antwort[5]+$antwort[6]+$antwort[7]+$antwort[8];
echo"You got $punkte points.<P>";
if ($punkte<$punktaus1) {
echo"$auswertung1";}
else if ($punkte<$punktaus2) {
echo"$auswertung2";}
else if ($punkte<$punktaus3) {
echo"$auswertung3";}
else {
echo"$auswertung4";}
echo"<P>This Quiz has been designed by <A HREF=\"mailto:vicky.bradford@saga.co.uk\">Vicky</A>.
</body>
";
?>
THANK YOU IN ADVANCE - yours hopefully
Vicky