I need some help with a PHP/MySQL multiple choice quiz that I'm making for a website.i am in new in php. I'm having trouble with the logic of browser back button.if user click on browser back button inbetween quiz.it goes on end of quiz and redirect result page.i am doing like this:-
<?php
include("connection.php");
$result = mysql_query("SELECT * FROM questions where id=1");
while($row = mysql_fetch_array($result))
{
echo $row['question_name'] ;
echo $row['answer1'] ;
echo $row['answer2'] ;
echo $row['answer3'] ;
echo $row['answer4'] ;
$_SESSION['exam']="true";
}
if($_SESSION['exam']=="false")
{
header('Location: expire.php');
}
?>