Log in

View Full Version : Usernames in CAPS only


emailapphost
04-09-2009, 10:26 AM
Is there a way I can set up so that user names must be in capital letters, CAPS ONLY?

"username" must thus be "USERNAME" ?

Thanks.

bananalive
04-09-2009, 10:38 AM
On new registrations you could use:

$username = strtoupper($username);

For updating current username:

UPDATE user SET username = UPPER(username);