> Copied and pasted the following sample script from the php manual and this
> outputs:
>
> ...........
> <?php
> $str = "A 'quote' is <b>bold</b>";
> echo htmlentities($str);
>
> ?>
> ..............
>
> // outputs: A 'quote' is <b>bold</b>
>
> Not sure why the I am still getting the tags and spaces after the call to
> htmlentities().
>
> Thank you for any help.
> TR


Are you looking at the html source?? I get A 'quote' is <b>bold</b> when I
load the page *BUT* viewing the source gives me this: A 'quote' is
&lt;b&gt;bold&lt;/b&gt;

;-)

Jim Grill

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

Reply via email to