> 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.'; ?>
