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

Reply via email to