function doublespace($string){ while(strstr($string," ")){ $string = ereg_replace(" ", " ", $string); } return $string; } if ($HTTP_GET_VARS){ while (list($key, $value)= each ($HTTP_GET_VARS)){ $$key = stripslashes(trim(doublespace($value))); } } if ($HTTP_POST_VARS){ while(list($key,$value)= each ($HTTP_POST_VARS)){ $$key = stripslashes(trim(doublespace($value))); } } ?>
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|