Do you know how to replace html tags with a space character using php?
If I display
strip_tags(\'Foobar\');
try this:
$str = 'Foobar'; echo trim(preg_replace('/<[^>]*>/', ' ', $str));