My question is why does..
$validationFail = "1";
$validationFail .= "i88";
$validationFail .= "w19";
echo $validationFail;
if($validationFail==1){
echo "hello world";
}
output 1i88w19hello world
I know that the if fails with ===, but why does this happen?
(code ran in http://phpfiddle.org/ )