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