Incam_Intranet/administracion_principal.php
2011-04-04 15:16:10 +00:00

22 lines
441 B
PHP

<?php
include("seguridad.php");
include("functions.php");
include_once("html/cabecera.php");
include_once("Objects/HTML.php");
$html=new HTML($locale);
/* ADMINISTRACION_PRINCIPAL.PHP */
$rol = stripinput($_GET["rol"]);
echo "<h2>".$rol."</h2>";
/* ------------ PERFIL */
//echo "<table width=100%><tr>";
// menu_rol($rol);
//echo "</tr></table>";
$html->menuOpcion($usuario,$rol);
include_once("html/pie.php");
?>