I am creating a very detailed web application for a client - there will be three groups that sign in (admin / manager / member).
Each one has such a different setup and usage that I am creating three phpRunner projects (mainly because the username/password for each group is in a different table). So, I'm creating three portals using three phpRunner projects all using one database.
If I have password set to encrypted in both projects and the admin user creates an account for a manager I don't see how the Manager will be able to login since this is a different project.
Admin Project (use tbl_admin for login credentials)
tbl_admin = id, username, password
tbl_managers = id, username, password, name, etc
tbl_members = id, username, password, name, etc
Manager Project (use tbl_manager for login credentials)
tbl_managers = id, username, password, name, etc
tbl_members = id, username, password, name, etc