At 1:40 PM -0400 4/25/09, Andrew Hucks wrote:
If I have something like $string = '"hello" there'; (the word hello is
in double quotes, if you can't see it), how would I output it as
something like <font color=color>"hello"</font> there.

Arrggg.

Don't use: "<font color=color>"hello"</font>"

The font tag is dead and embedded styling should moved to css.

There are lot's of ways to do this, here's one:

<span class="red"><?php echo('hello'); ?></span><?php echo(' there'); ?>

You might also check out first-child in css. That way you can make "hello" in red and "there" in whatever the element color is in one statement.

Cheers,

tedd


--
-------
http://sperling.com  http://ancientstones.com  http://earthstones.com

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

Reply via email to