<?php
$st = 'fgh';
if($st == 1 || $st == 0){
echo "IN";
}
?>
Why This echo IN ??? I'm not able to understand...
<?php
$st = 'fgh';
if($st == 1 || $st == 0){
echo "IN";
}
?>
Why This echo IN ??? I'm not able to understand...