How can I make some kind of online test? Like there is questions and 4 answers, and you check which answer you want and when your done click a button to grade it.
Printable View
How can I make some kind of online test? Like there is questions and 4 answers, and you check which answer you want and when your done click a button to grade it.
<form method="post" action"quiz.php">
Question 1 <b>blah blah blah</b><br>
answer 1:<input type="radio" value="a" name="answer"><br>
answer 2:<input type="radio" value="b" name="answer"><br>
answer 3:<input type="radio" value="c" name="answer"><br>
<input type="submit" value="check my answers" name="submit"><br>
</form>
<?php
$answer=$_POST["answer"];
if ($answer == "a")
{
echo "correct";
}
?>
NVM got it =DD
ahem... are you forgetting somthing [cough]resolved, checkmark[/cough]
^.- Lol sorry.