Hey guys,
<?php
$email = "DavH";
if ($email == "davh")
{
echo "Match";
}
else
{
echo "No Match!";
}
?>
This is a simplified version of what I'm doing. I'm actually comparing an entry in a db with a GET variable but I wanna know why it is returning "No Match"?!!
It matches, surely? How can I compare them regardless of thier case?