Simple Username Creation Validation with PHP
When I create login areas (mostly intranets) for small websites, I'm always asked by the customer to keep
usernames to letters and numbers. That means no email addresses as usernames
and special characters like "_", "-", and ".". This, in my customer's mind,
keeps the login easy for their users and limits the number of support calls
they will receive. While I don't recommend disallowing common username
characters like the ones cited above, I do understand their need for simplicity.
Here's how, using PHP, I validate that a username is only letters and numbers.
The PHP
function validate_username($input,$pattern = '[^A-Za-z0-9]')
{
return !ereg($pattern,$input);
}
It's as easy as that. I don't go as far as using this for passwords, but you could if you wanted to. I'll also mention that if I want to allow non-alphanumeric characters, I just need to change the function's pattern. Easy enough!
![Camera and Video Control with HTML5]()
Client-side APIs on mobile and desktop devices are quickly providing the same APIs. Of course our mobile devices got access to some of these APIs first, but those APIs are slowly making their way to the desktop. One of those APIs is the getUserMedia API...
![Create a CSS Flipping Animation]()
CSS animations are a lot of fun; the beauty of them is that through many simple properties, you can create anything from an elegant fade in to a WTF-Pixar-would-be-proud effect. One CSS effect somewhere in between is the CSS flip effect, whereby there's...
![MooTools 1.2 Tooltips: Customize Your Tips]()
I've never met a person that is "ehhhh" about XHTML/javascript tooltips; people seem to love them or hate them. I'm on the love side of things. Tooltips give you a bit more information about something than just the element itself (usually...
![dwClickable: Entire Block Clickable Using MooTools 1.2]()
I recently received an email from a reader who was really impressed with Block Clickable, a jQuery script that took the link within a list item and made the entire list item clickable. I thought it was a neat script so I...
I like the approach — instead of matching a word boundary e.g. ^[a-zA-z0-9]*$ you match the first invalid character. I wonder what the speed difference is…
BTW, you can use [^\w\d] insead ;) It’s lazier
My bad. You cant use \w since it matches _ as well. On the other hand \w handles \d, so if you are looking for something quick for chars, digits and _ — you can use \w.
You could also use PHP’s ctype_alnum to match only alphanumeric characters
which matches (ever so slightly) faster than its equivalent regular expression,
and still retain future flexibility by using something like:
Of course the speed difference is on the order of nanoseconds,
but it is faster nonetheless.
A better method name would be useful. ;)
@Jeff: Ooops. I have this function within a class. I actually use it like this:
I simply didn’t rename it for the blog. I’ll do that quick!
A word of warning,
ereg
is being removed in PHP6 because of the more powerful and usually fasterpreg
. Altering your code to work withpregs
is easy and safer should the server you’re on upgrade to PHP6 sometime in the future:ereg will be deprecated in php 5.3 and removed in 6, use preg instead
ereg is not available in php 5.3.0
any alternative for this ?
I’m rather new to regexp, and am just trying to get something exactly like this to work, but it just isn’t. I got annoyed, and then simplified as much as possible to this:
and it isn’t responding anything except 0, no matter what I try.
Oops sorry. Anyways, it’s just a text input that posts to itself, and it deals with the post by doing
The Best way I recommend is this :-