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?
|
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?
| |||||
feedback
|
|
I find that there's no single function for idiot-proofing user inputs. Best to mix a few together:
| |||||||||||
feedback
|
|
Regex could fit well with less code:
Here we have good examples: | |||||||
feedback
|