can any one tell me about Php .... actually i know about HTML n JavaScript but
i dont know much about php... can we discuss here about php.
________________________________
JIN
________________________________
From: keybounce <[email protected]>
To: Gears Users <[email protected]>
Sent: Wednesday, August 12, 2009 2:46:17 AM
Subject: [gears-users] PhP (was: Re: DB Locks)
> 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.';
?>