I was wondering if anyone can tell me why the following occurs
<?php echo true; echo "<br>"; echo false; ?>
This prints the value 1 (for the true) and nothing else. I would have expected it to print a 0 for the false. Thanks for any ideas
Although false is treated as 0 numerically when treaded as a string (as it is when echoed) it's treaded as null.
thanks bubblenut
NP dude 🙂