I should be getting an offset warning error in this code but it shows nothing. What am i missing ?
I have turned on error reporting etc.
<?php
$info = null;
$value = 'string';
if ($value == $info['firstname']){
echo 'true';
}else{
echo 'false';
}
?>