172/* This functin handles input parameters making sure nothing dangerous is passed in */ function input($in) { $out = htmlentities(stripslashes($in)); $out = str_replace(array('/','\\'), '', $out); return $out; }