Do you know how to replace html tags with a space character using php?
If I display
strip_tags(\'Foobar\');
preg_replace('#\<(.+?)\>#', ' ', $text);
Bit late with answer but try this one, basically selects everything inside <> including the tags.