Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a php/mysql application where people can registre, is it a good idea to strtolower the username then store in the database in order to not have problems in the future? because people are using DiFfeReNt cases and i'm afraid that will make conflict in some queries.

Thanks

share|improve this question

6 Answers

up vote 8 down vote accepted

It really doesn't matter - MySQL is case insensitive unless you specify so Andy, andy and AnDy will all match.

The caveat is collation - however:

The default character set and collation are latin1 and latin1_swedish_ci, so nonbinary string comparisons are case insensitive by default.

Beware, if you are using latin1_general_cs the cs stands for case sensitive, and all your queries will be case sensitive! Here's some more info on charsets and collation.

share|improve this answer

If lowercasing usernames makes you avoid conflict in some queries (as you stated), then you have probably have some larger problems at hand.

You should be sanitizing all database input, but lowercasing usernames as such should not be necessary.

share|improve this answer
I don't have conflict right now, but i just want to confirme before i build the whole app :) – Ryan Mar 31 '10 at 20:34

I would suggest to store it the way user entered it, especially if you display it somewhere.
But when user registers a new username and you don't want to allow such duplicates, then check without case sensitivity before saving.

share|improve this answer

No case issue can cause any conflict with the query.

share|improve this answer

No. You can leave your users disappointed if you change their username in any way. You can change the collation of the column on the DB to be case insensitive.

share|improve this answer

You should store it the way the user entered it.

What you MUST provide is a case insensitive authentication, when comparing just lower(user.input) with lower(database.data).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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