Steven Roussey wrote:
> Here is an example of why it causes problems: We had some lines of code like
> this:
> 
> echo ("<table width=100%>");
> 
> works ok. But then we comment out the that line:
> 
> // echo ("<table width=100%>");
> 
> it now dies.

another reason for always using quotes on attribut argument ;)

echo ("<table width='100%'>");
 

-- 
Hartmut Holzgraefe  [EMAIL PROTECTED]  http://www.six.de  +49-711-99091-77

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to