Hello Matt,

Wednesday, January 14, 2004, 12:59:50 AM, you wrote:

MH> I'm trying to specify <font face=Monotype Corsiva> in my php document... but
MH> can't b/c it's two words... if it was html I could just put "", but since I
MH> can't do that in php, does anyone know what to do?

I guess you're echo'ing it out? The following would work:

echo "<font face=\"Monotype Corsiva\">blah</font>";
echo '<font face="Monotype Corsiva">blah</font>';

The second option will work if you've not variables that need
displaying on that line.

-- 
Best regards,
 Richard                            mailto:[EMAIL PROTECTED]

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

Reply via email to