, Jam Warehouse (Pty) Ltd, South Africa */ /** * Accepts a web encoded string and outputs a "clean" string. */ function sanitize($string) { // This should be set if you've read the INSTALL instructions. // Better to be safe though. if (get_magic_quotes_gpc()) { $string = strip_tags(urldecode(trim($string))); } else { $string = addslashes(strip_tags(urldecode(trim($string)))); } // This might be a little too aggressive $pattern = "([^[:alpha:]|^_\.\ \:-])"; return ereg_replace($pattern, '', $string); } ?>