Date: 12/28/99
- Next message: Florian Gnägi: "Re: [PHPLIB] a fool"
- Previous message: Bob Strouper: "[PHPLIB] ye`ol back button and forms"
- In reply to: Eric Ries: "[PHPLIB] Multiple users, same username/password"
- Next in thread: Kristian Köhntopp: "Re: [PHPLIB] file upload problem"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
hi eric
usernames should *always* be unique. otherways authentication based upon
usernames is just a joke...
when user choose their username you first have to search for the same
username in the database and make sure that the username ist unique befor
you perform an insert.
howevr, keep in mind that mysql in some way is not case sensitive...
select * from user where name='bla';
will also match when a user with the name 'Bla' exists...
have fun
-florian
On Tue, 28 Dec 1999, Eric Ries wrote:
> Are there known issues with having multiple users simultaneously log in
> with the same username/password combo? It occurs to me that this should
> work basically the same as having mutliple browser windows operating on the
> same machine simultaneously, which seems to work fine. However, another
> part of me has been conditioned to think of this as a synchronicity
> problem, so I'm just not sure.
>
> Thanks gang!
>
> Eric
>
> -
> PHP3 Base Library Mailing List. Send messages to <phplib <email protected>>.
> To unsubscribe, send "unsubscribe" to <phplib-request <email protected>> in
> the body, not the subject, of your message.
>
-
PHP3 Base Library Mailing List. Send messages to <phplib <email protected>>.
To unsubscribe, send "unsubscribe" to <phplib-request <email protected>> in
the body, not the subject, of your message.
- Next message: Florian Gnägi: "Re: [PHPLIB] a fool"
- Previous message: Bob Strouper: "[PHPLIB] ye`ol back button and forms"
- In reply to: Eric Ries: "[PHPLIB] Multiple users, same username/password"
- Next in thread: Kristian Köhntopp: "Re: [PHPLIB] file upload problem"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

