if (isset($_POST['Submit'])) {
//echo "post equals".$_POST['x']."     corect is".$correct_answers[$page-1];
$compare1 = $_POST['x'];
echo "page is".$page;
$compare2 = $correct_answers[($page-1)];
echo "compare1 is ".$compare1;
echo "<BR>";
echo "compare2 is ".$compare2;

if (strcmp($compare1, $compare2) == 0) {
$incrementedPage = $page + 1;
?>
<script type="text/javascript">
<!--
window.location = "http://www.google.com/";
//-->
</script>
<?
//header("Location: evaluation.php?page=$incrementedPage");
}

else {
$chances++;
echo "you have had".$chances;
}

}


?> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to