I figured it out.  Change the last line to
echo htmlspecialchars($b);
and you'll get the proper output.

Gerard Samuel wrote:

> Im trying to get a final output to be '<item>' but Im unable to get 
> working.  Could someone point me where Im going wrong.
> Thanks
>
> <?php
>
> $a = '<item rdf:about="http://www.trini0.org";>';
>
> $b = preg_replace("/(<item)(\s.*)(>)/i", "$1" . "$3", $a );
> echo $b;
>
> ?>
>
>



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

Reply via email to