The site user can sign-up on a site, and during sign-up he can provide a name.

I want this name to be a valid name, and free of any HTML and other funky characters. Is strip_tags enough for this?

link|improve this question

1  
What about whitelisting rather than blacklisting? If you require usernames to conform to certain requirements like "no funky characters", only allow a certain range of characters and check for that instead of the other way around. – deceze Feb 21 at 3:12
feedback

2 Answers

up vote 4 down vote accepted

I find that there's no single function for idiot-proofing user inputs. Best to mix a few together:

$val = trim($val);
$val = strip_tags($val);
$val = htmlentities($val, ENT_QUOTES, 'UTF-8'); // convert funky chars to html entities
$pat = array("\r\n", "\n\r", "\n", "\r"); // remove returns
$val = str_replace($pat, '', $val);
$pat = array('/^\s+/', '/\s{2,}/', '/\s+\$/'); // remove multiple whitespaces
$rep = array('', ' ', '');
$val = preg_replace($pat, $rep, $val);
$val = trim($val);
$val = mysql_real_escape_string($val); // excellent final step for MySQL entry
link|improve this answer
obviously, put this in a function ... function sanitize($val) { ... } ... then call sanitize on anything you want scrubbed – neokio Feb 21 at 2:59
Don't forget to put argument in quotes in your INSERT query, otherwise all of this escaping is for nothing! – Tim Feb 21 at 3:02
1  
"excellent final step for MySQL entry" should be "critical final step". It's actually the only step you you must do. – Hamish Feb 21 at 3:03
"Best to mix a few together" - Don't willy nilly mix random functions together. Apply each function for a specific purpose, not because more is better. – deceze Feb 21 at 4:07
feedback

Regex could fit well with less code:

^[A-Z]'?[- a-zA-Z]( [a-zA-Z])*$

Here we have good examples:

Regex for names

link|improve this answer
2  
Nǃxau ǂToma has a bone to pick with your regex. – ceejayoz Feb 21 at 3:12
@ceejayoz You're right! – Keyne Feb 21 at 3:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.