>> echo "<font color="#FFFFFF">ovo je javna strana </font>" ;
AS> Here, PHP stops parsing the string which is to
AS> be printed by echo right before the #FFFFFF.
AS> You either need to break your fingers and
AS> write:
AS> echo "<font col=\"#ff\".................";
AS> or have it much simpler, faster and better and
AS> use single quotes instead:
AS> echo '<font col="ff"..............';
Or try something like this (but i'm shure you
won't want to use it :)
echo <<<END
<font color="#FFFFFF">ovo je javna strana </font>
END;
--
Andrew Perevodchik
[EMAIL PROTECTED]
--
PHP General 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]