0
// clear strings
function esc($str) {
$str = $_POST[$str];
$str = trim($str);
$str = mysql_real_escape_string($str);
return $str;
}
if( !filter_var(esc('pre_email'), FILTER_VALIDATE_EMAIL) ){
$errors = true;
}
DATE 12 Août 2012
