
 Jim Robson - 2010-06-01 17:05:13
 
Hello, thanks for this much needed class. 
I am currently working with this code for strip_code()
function filter($data) {
	$data = trim(htmlentities(strip_tags($data,"<a>")));
	
	if (get_magic_quotes_gpc())
		$data = stripslashes($data);
	
	$data = mysql_real_escape_string($data);
	
	return $data;
}
can you help me convert over to your class?
Thanks, okrobie