hey, im new to php, but im trying to make a sort of quiz. Its very simple code and i dont see why it doesn't work. could someone pls help me? Here is the code:
<head>
<title></title>
<body>
<?php
if($beensubmitted) {
if($question = "a") {
print("Correct");
} else {
print("Incorrect!");
}
}
?>
<form action="samples.php" method=post>
<input type=radio name="question" value="a"> ANSWER A
<input type=radio name="question" value="b"> ANSWER B
<input type=radio name="question" value="c"> ANSWER C
<input type=submit value="SUBMIT" name="beensubmitted">
</form>
</body>
Thank you!