
About this sites login script
-
- Joined: Thu Oct 30, 2003 9:34 pm
About this sites login script
Hey, im new to this board and its really awesome... anyways i saw the login script and ive been looking everywhere for one like this that uses the forum (phpbb) as a user system and i really would like to know if you guys could send me the script plz plz
ok thanks in advance....

- dj-ohki
- Joined: Tue Apr 17, 2001 12:49 pm
- Contact:
its stored in a sql table, phpbb_users by default IIRC. username is stored in col username, md5 of password is in user_password. authencation can be done via "select user_id from phpbb_users where username = '%s' and password='%s' and user_active = 1" % ( username, md5(password) ).
should be simple to modify any off the shelf sql authencation system to use phpbb's backend.
should be simple to modify any off the shelf sql authencation system to use phpbb's backend.