[PHP] Stupid newbie question = Why don't I need a ; after this line?

2004-01-26 Thread Paul
Thanks for any advice.

Can anyone tell me why I do not get any errors with ( no ; after _id'] )

?php echo $row_otherlawyer['lawyer_id']?

?php echo NO ERROR;?

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



Re: [PHP] Stupid newbie question = Why don't I need a ; after this line?

2004-01-26 Thread Jason Wong
On Tuesday 27 January 2004 14:18, Paul wrote:

 Can anyone tell me why I do not get any errors with ( no ; after _id'] )

 ?php echo $row_otherlawyer['lawyer_id']?

 ?php echo NO ERROR;?

manual  Basic syntax

-- 
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
--
/*
Are there those in the land of the brave
Who can tell me how I should behave
When I am disgraced
Because I erased
A file I intended to save?
*/

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



Re: [PHP] Stupid newbie question = Why don't I need a ; after this line?

2004-01-26 Thread Tom Rogers
Hi,

Tuesday, January 27, 2004, 4:18:03 PM, you wrote:
P Thanks for any advice.

P Can anyone tell me why I do not get any errors with ( no ; after _id'] )

P ?php echo $row_otherlawyer['lawyer_id']?

P ?php echo NO ERROR;?


From the manual (which is given away free:)

The closing tag for the block will include the immediately trailing newline if one is 
present.
Also, the closing tag automatically implies a semicolon;
you do not need to have a semicolon terminating the last line of a PHP block.
Closing tag of a PHP block at the end of a file is optional.

-- 
regards,
Tom

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



[PHP] stupid newbie question

2001-10-04 Thread Paul Procacci

How do u fork?

Thanks ahead of time : )


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]