Justin French <mailto:[EMAIL PROTECTED]>
    on Friday, October 24, 2003 12:57 AM said:

> I also adapted wrapping all variables in {parenthesis} so that PHP has
> no chance of being confused

heh... actually those are {curly braces} and these are (parenthesis).

> No special chars or vars:
> echo '<td bgcolor=\'#ffffff\'>&nbsp;</td></tr>';

Even better (and valid HTML too!):

echo '<td bgcolor="#ffffff">&nbsp;</td></tr>';


I've always been a big fan of:

> echo "<td bgcolor=\"$bgcolor2\">&nbsp;</td></tr>";

But this has been an interesting topic so I might just start changing my
style.


Chris.

p.s. If you're wondering how heredoc fits into all of this, it's really
slow.
--
Don't like reformatting your Outlook replies? Now there's relief!
http://home.in.tum.de/~jain/software/outlook-quotefix/

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

Reply via email to