make_safe

function make_safe($variable) {
$variable = addslashes(trim($variable));
return $variable;
}

source

Leave a Reply