When I a user registers a new account, he/she must choose a user name.
Of course, I dont want two users to pick the same username, so what I need to know is how to search the MySQL table to find out if a specific user name has already been picked?
For example, a user enters desired username: Bob
So I need to search if there already is a user registered with "Bob"
How do I do this?
mysql_query("SEARCH.....") ????