Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
try searching roles for user in web applications – GeoPhoenix Sep 16 '12 at 6:00

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.

3 Answers

up vote 0 down vote accepted

You add a new row in your mysql table called for example login_type and for every user you add his login type:

admin    - login_type = admin_folder
branch 1 - login_type = branch1_folder

So every time an user authenticates you redirect him to his default folder stored in login_type. And of course you check if he didn't landed in a different folder.

share|improve this answer

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.

 <?php    
        $branch = $row['branch'];
        echo "<script> window.location='".$branch."/index.php' </script>";
 ?>
share|improve this answer

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.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.