I need to strip all and all \'quotes\' (\") and all \'ands\' (&) and replace them with a space only ...
\"
&
How c
<?php $text = '<p>Test paragraph.</p><!-- Comment --> <a href="#fragment">Other text</a>'; echo strip_tags($text); echo "\n"; // Allow <p> and <a> echo strip_tags($text, '<p><a>'); ?>
http://php.net/manual/en/function.strip-tags.php