Thursday, June 13, 2002, 2:09:23 PM, you wrote: > I don't think so. The difference is (IMHO + the article linked below) if > you use
> ...<a href="<?=$Var?>">Foo</a>... (faster) > or > <? print "...<a href=\"$Var\">Foo</a>..."; ?> (slower) Actually, Brian is right. PHP parses text contained within "s whereas it doesn't do so with text contained within 's. However, neither will be quicker than inline HTML since PHP completely ignores that as previously mentioned. -- Stuart -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php