So ive searched around and cant find the answer what im trying to do is find out if a variable is equal to another variable in exact characters.
<?php
$a = 'aBcD';
$b = 'abcd';
if($a == $b){
echo 'yep';
} else {
echo 'nope';
}
//variables above are not equal to each other
?>
aBcD and abcd are not equal but no matter what i try it always comes up as true. Im sure theres an easy way to find this out but i cant seem to find it. can someone help me. Thanks