
Added by amorph on May-15-2007, 4:37 pm
function remSpecialChars($string) {
$string = stripslashes($string);
$string = eregi_replace("'","'",$string);
$string = eregi_replace('"','"',$string);
$string = eregi_replace('?','-',$string);
$string = eregi_replace('?','’',$string);
return $string;
}
function addSpecialChars($string, $noQuotes = FALSE) {
$string = eregi_replace("&","&",$string);
if (!$noQuotes) $string = eregi_replace("'","'",$string);
$string = eregi_replace('"','"',$string);
$string = eregi_replace('<','<',$string);
$string = eregi_replace('>','>',$string);
$string = eregi_replace(' ',' ',$string);
return $string;
}
Added by amorph on May-15-2007, 4:52 pm
Added by amorph on May-15-2007, 4:48 pm
Added by amorph on May-15-2007, 4:39 pm
Added by amorph on May-15-2007, 4:14 pm