Nilt
MIra puedes hacerlo así:
Código PHP:
<?php
require("seguridad.php"); // verificador
switch($_SESSION['usuario_nivel']){
case "1":
header ("Location: indexusuario.php");
exit;
break;
case "2":
header ("Location: admin/indexadmin.php");
exit;
break;
default:
header ("Location: error.php");
exit;
}
?>
// en el usuario
<?php
require("seguridad.php");
if ($_SESSION['usuario_nivel'] == 1){ // nivel del usuario
header ("Location: error.php");
exit;
}
// aca tu page
?>
// en el admin
<?php
require("seguridad.php");
if ($_SESSION['usuario_nivel'] == 2){ // nivel del admin
header ("Location: error.php");
exit;
}
// aca tu page
?>
Exitos.
Al3jo