I have a simple user registration form, but I do not want to allow users to register twice. Can I set up a WHERE statement that will check for the info already in the db or do I have to do it a different way?
before doing the update...do
'select * from usersTable where login = $login and pass=$password'
This should be done anyway to prevent users from inadvertantly duplicating the username/passwords...
Bastien
After I do that how do I setup my INSERT statement?