This question already has an answer here:
I have an if
statement in my website. And what I want, is that he won't make distinction in capital letters. My if
statement:
<?php
$nameOne = "JOHN";
$check = "john";
if($nameOne == $check){
echo 'No distinction';
} else {
echo 'distinction ';
}
?>
So, I want to echo
'No distinction'.
</div>