I am trying to build an extranet for my clients so they can login to view a work-in-progress version of their site.
I've got a MySQL database with the following fields:
ID: int, auto_increment, primary
username: varchar(20)
password: varchar(20)
clientpage: varchar(50)
Upon successful login, I would like to redirect the user to their work-in-progress page.
Any suggestions as to how I would go about this? I've worked with user authentication with PHP only in the case wherein successful login redirects to a standard page, not a conditional.
Any help would be greatly appreciated.
Thanks!
Tim