(adsbygoogle = window.adsbygoogle || []).push({});
alright guys I already got the basics here: [url]www.thecade.info/blah.php[/url]
But I need it to have a button that says "next question" after you answer correctly.
The quiz will only be 5 questions.
<form name = "quizQ1">
<b>Question 1: Should you wear flip flops or close toed shoes while working in the lab?</b><br> <br>
<input type = "radio" name = "rad1" onclick = "getAnswer('a'

"> Close Toed Shoes <br>
<input type = "radio" name = "rad1" onclick = "getAnswer('b'

"> Flip Flops <br><br><br>
</form>
<script type = "text/javascript">
function getAnswer(input) {
if (input == "a") {alert ("Well done! You should always wear closed toed shoes when working in the lab!")}
else {alert ("No that's incorrect, I like men")}
}
</script>