var_dump gives
Company Director string(17)
Company Director string(16)
Why would they be different? Seems like they have add some extra whitespace?
R.
----- Original Message -----
From: "Jochem Maas" <jochem@xxxxxxxxxxxxx>
To: "Ross" <ross@xxxxxxxxxxxxx>
Cc: <php-general@xxxxxxxxxxxxx>
Sent: Tuesday, June 20, 2006 3:57 PM
Subject: Re: Re: comparing strings - again!
Ross wrote:
This does not work although when I echo out the strings they are exactly
the
same. Strange!
try using var_dump($compare1, $compare2);
"Ross" <ross@xxxxxxxxxxxxx> wrote in message news:...
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