i am intented to design 5 levels of admins. suppose admin ,admin1,admin2,... will be on dropdown and there is user and passwrod fields according to the admin selected he will redirected to the panel accordingly
<form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post">
<label for='form[]'>Select the Admin:</label><br>
<select multiple="multiple" name="form[]">
<option value="admin">admin</option>
<option value="admin1">admin1</option>
</select><br>
<input type="submit" name="formSubmit" value="Submit" >
</form>
And in Controllers i have loaded all the tables of various admin levels. But it seems nothing to be working out. could any1 look into this.