Common Login System

Status
Not open for further replies.

nairaweb

Active Member
44
2011
0
0
Hi WJ,

I am working on a new site(PHP Based).The site has different scripts under the same domain but in different folders (like xyz.com/a and xyz.com/b).Every Script has different functions and its own database and its own login page offcourse!
So,the question is:
Is there any way to implement a common login system so the user has to login at only one place?

Thanks in advance!
 
8 comments
you means in different script same login details will work/? and users need to login once in any script and they will be able to access other script without login again?
 
you means in different script same login details will work/? and users need to login once in any script and they will be able to access other script without login again?

Yes, you got it right.is it possible?
 
As the other dudes/dudettes have said it's possible but it's require a bit of trickery/time.

The easiest way to go about it (but not the best way) would be to keep them as they are but add a few lines on the register page which registers the user up to the other tables as well - so then you don't have to go through the entire script replacing all the table names / column names etc.
 
As the other dudes/dudettes have said it's possible but it's require a bit of trickery/time.

The easiest way to go about it (but not the best way) would be to keep them as they are but add a few lines on the register page which registers the user up to the other tables as well - so then you don't have to go through the entire script replacing all the table names / column names etc.

Thats an impressive answer...!

Can you Please Guide me how it can be done?
 
Status
Not open for further replies.
Back
Top