Don't believe everything you read.
On Aug 12, 10:46 am, keybounce <[email protected]> wrote: > > PHP > > has been so easy for small, quick projects. But they always grow into > > something that deserves better organization. > > PhP? > > Wasn't that: > > $a = 0; $b = 'Hello'; > > if ($a == false && $b == true && $a == $b) echo 'Universe broken.'; > > That was from my first "hello world" type of program. Haven't used it > since. > > Kleiman-ibook:php michael$ ./test.php > Universe broken. > Kleiman-ibook:php michael$ cat ./test.php > #!/usr/bin/php > <?php > > $a = 0; $b = 'Hello'; > if ($a == false && $b == true && $a == $b) echo 'Universe broken.'; > > ?>
