You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
338 B
PHP
18 lines
338 B
PHP
<?php
|
|
|
|
function filterName($field){
|
|
|
|
// Sanitize user name
|
|
$field = filter_var(trim($field), FILTER_SANITIZE_STRING);
|
|
|
|
// Validate user name
|
|
if(filter_var($field, FILTER_VALIDATE_REGEXP, array("options"=>array("regexp"=>"/^[a-zA-Z\-\s]+$/")))){
|
|
return $field;
|
|
}else{
|
|
return FALSE;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|