WebbServerProg/www/public/Moment-0/evaluate.php
2024-08-26 08:41:08 +02:00

30 lines
646 B
PHP

<!doctype html>
<html>
<head lang="sv"></head>
<body>
<h1>Matematiktest</h1>
<h2>Resultat</h2>
<?php
$ans1 = $_POST['q1'];
$ans2 = $_POST['q2'];
$ans3 = $_POST['q3'];
$ans4 = $_POST['q4'];
$ans5 = $_POST['q5'];
$points = 0;
$namn = $_POST['namn'];
if($ans1 == 9)
$points++;
if($ans2 == 15)
$points++;
if($ans3 == 3)
$points++;
if($ans4 == 2)
$points++;
if($ans5 == 21)
$points++;
echo("<p>Du fick " . $points . " av 5 möjliga ".$namn."</p>");
include("../footer.html");
?>
</body>
</html>