function make_safe($variable) {
$variable = addslashes(trim($variable));
return $variable;
}
make_safe
Leave a Reply
You must be logged in to post a comment.
function make_safe($variable) {
$variable = addslashes(trim($variable));
return $variable;
}
You must be logged in to post a comment.