Do you know how to replace html tags with a space character using php?
If I display
strip_tags(\'Foobar\');
First do a str_replace
$string = 'Foobar' strip_tags(str_replace('', ' ',$string));