On Monday 15 September 2003 06:55, Stevie D Peele wrote:
> Is PHP space sensitive??

No. Statements are terminated by a semi-colon.

This:

-----------------------------
  echo
       "This is the same"
  ;
-----------------------------

is the same as

-----------------------------
  echo "This is the same";
-----------------------------

-- 
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
* Web Design & Hosting * Internet & Intranet Applications Development *
------------------------------------------
Search the list archives before you post
http://marc.theaimsgroup.com/?l=php-general
------------------------------------------
/*
Writing about music is like dancing about architecture.
                -- Frank Zappa
*/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to