olinux <mailto:[EMAIL PROTECTED]> on Friday, October 24, 2003 9:41 PM said:
echo "<td bgcolor=\"$bgcolor2\"> </td></tr>";
uggh - apparently you've never had to redesign a site/application that uses this style. This is one table cell, but when you work this style through a big app, it's a huge pain (waste of time) to make any changes.
Apparently. What do you recommend?
You have plenty of options... a & b would be my preference:
a) echo "<td bgcolor='{$bgcolor2}'> </td></tr>"; b) echo "<td bgcolor='$bgcolor2'> </td></tr>"; c) echo '<td bgcolor="'.$bgcolor2.'"> </td></tr>'; d) echo "<td bgcolor='".$bgcolor2."'> </td></tr>";
Justin French
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php