[PHP] PHP Parsing Efficiency

2002-01-06 Thread Marvin Sanders
Newbie question: Is there any performance hit on a page with muliple PHP tags inserted throughout HTML, compared with trying to concatenate all of the PHP scripting into one set of tags? Thanks for any advice! Marvin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] PHP Parsing Efficiency

2002-01-06 Thread Bogdan Stancescu
There may be a difference but even if it is, it's so small you shouldn't consider it. Imagine how much it takes for a (generally) cached document to be checked for ? or ?php or whatever you're using... Don't bother with this one! Bogdan Marvin Sanders wrote: Newbie question: Is there any