, Jam Warehouse (Pty) Ltd, South Africa */ /** * Accepts a web encoded string and outputs a "clean" string. */ function sanitize($string) { // Remove '(' and ')' $xss_array = array("(" => "#&40;", ")" => "#&41;"); // Remove all HTML tags. $string = strtr(strip_tags(urldecode($string)), $xss_array); return $string; } ?>