Say:
$a = "Get Money <b>ff</b> Now <i>gg</i> """;
I need to get rid of the tags and the quotes.
Take a look at the function strip_tags(). Also, to get rid of quotes, just use a simple str_replace(). There's no need for regex here...
Diego
http://www.php.net/manual/en/function.strip-tags.php and http://www.php.net/manual/en/function.str-replace.php
{oops, Diego beat me to the punch. 🙂}