Using == vs Using !=
/*Testing some basic scenarios in PHP*/
$a=7;
$b=5;
echo $a==$b;
$a=7;
$b=5;
echo $a!=$b;
Output is blank screen in case 1. Output is 1 in case 2 .Why am I getting these respective outputs?
Using == vs Using !=
/*Testing some basic scenarios in PHP*/
$a=7;
$b=5;
echo $a==$b;
$a=7;
$b=5;
echo $a!=$b;
Output is blank screen in case 1. Output is 1 in case 2 .Why am I getting these respective outputs?