We have 2 admin pages. one is for admin and another is for branches. We have 16 branches in our company. I have put 16 branches as different folder. One is for admin section. If I login www.xxx.com it asks login page. When admin enters it should go to admin page only. And if any branches try to login www.xxx.com, den it should redirect to their respective branches folders. Please tell me how i do dat in php/mysql.
closed as not constructive by xdazz, Vulcan, Mihai Iorga, alfasin, AVD Sep 16 '12 at 8:04
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
You add a new row in your mysql table called for example
So every time an user authenticates you redirect him to his default folder stored in |
|||
|
|
|
You can consider using another element in form like select. If thats not a good choice then you can go with another column in your mysql user related table. The column may be like, branch. You can have a value there as brach1,branch2.....branchn. When a user enters his credentials check for the Branch column as well. If it is a branch1 redirect him to branch1 and if branchn then redirecty him to branchn as below.
|
|||
|
|
|
You can classify the users according to admin or branch. First , you will need to store the branch for every users who can login in the site in the database. When the user login takes place, retrieve the branch from the row and redirect the his corresponding branch. |
|||
|
|

rolesfor user in web applications – GeoPhoenix Sep 16 '12 at 6:00