I've got two shareware scripts that tie into a MySQL database. One script is a family tree script called TNG, that turns my exported software file into a php and MySQL web site (as opposed to most software exports, which generate 2100 static html pages - ack!). The other script is a bulletin board system called PHPBB.
Both of these scripts make use of username/passwords.
TNG requires that I manually set-up whatever additional users I want, which kind've blows 'cause that means I have to deal with issuing out / editing any passwords I want associated with the site. TNG handles passwords with a table called "tng_users".
PHPBB, on the other hand, allows users to register and edit their own password and info, and has a system for mailing people forgotten passwords, etc. Basically takes me out of the loop unles I need to ban/delete a user. PHPBB also has a "phpbb_users" table.
What I'm wondering is if there's a way to link the username and password fields in "tng_users" to the username and password fields in "phpbb_users". That way, when people register or edit their username / passwords in PHPBB, it automatically reflects in TNG. Get me? Aside from the linking part, the only other snafu I see is that the password field in "phpbb_users" is encrypted, whereas in "tng_users", it is not.
So uh...any ideas?
Mike....