Is it possible to delete special caracters from a string and multiple
spaces?
When the input is : "a&*bbb cc/c d!d"
I want the result : "abbb ccc dd"
thnx.
MJ
<?php
$q = $_REQUEST['q'];
$q = strip_tags($q);
echo $q
?>
spaces?
When the input is : "a&*bbb cc/c d!d"
I want the result : "abbb ccc dd"
thnx.
MJ
<?php
$q = $_REQUEST['q'];
$q = strip_tags($q);
echo $q
?>
Comment