|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/logicswapweb/aplicaciones/modelo entidad relacion/ |
Upload File : |
<?php
include('./fnc/DBConnect.php');
include('./fnc/componente.php');
include('./fnc/vinculo.php');
include('./fnc/UsuarioPanel.php');
include('./fnc/bitacora.php');
include('./fnc/aplicacion.php');
include('./fnc/panel.php');
session_start('PanelAzulDigial');
if(!session_is_registered("panel")){
echo "<div style=\" font-family: Verdana, Arial, Helvetica, sans-serif; color: #0066CC; font-size: 16px;font-weight: bolder;\">Usuario Invalido</div>";
}else{
/*$usr_ = $id_usuario;
$nombre_ = $name_usuario;
if($tipo_usuario==1 || $tipo_usuario==4){$perfil_ = 1;}
if($tipo_usuario==2 || $tipo_usuario==3){$perfil_ = 2;}*/
/*$var=get_object_vars($panel->usuario);
foreach($var as $key=>$val){
echo $key." = ".$val."<br>";
}
echo "<br>";*/
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Panel de Control .: Loteria del Valle :.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
if (history.forward(1)){location.replace(history.forward(1))}
</script>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
.style1 {
font-size: 9px;
color: #333333;
font-family: Arial, Helvetica, sans-serif;
}
-->
</style>
<link href="css/fuentes.css" rel="stylesheet" type="text/css">
<link href="css/bienvenidos.css" rel="stylesheet" type="text/css">
<link href="css/titulos.css" rel="stylesheet" type="text/css">
</head>
<body>
<?php
$panel->reactivarDB();
$panel->setFiles(3);
$var=get_object_vars($panel);
foreach($var as $key=>$val){
echo $key." = ".$val."<br>";
}
echo "<br>";
$tipo_u=$panel->usuario->tipo;
$user_u=$panel->usuario->id;
$estado_u=$panel->usuario->estado;
if($panel->existAplicaciones()){
$panel->cargarContenido($tipo_u,$user_u,$estado_u);
}else{
$ms=$panel->salida['msg'];
echo "<div class=\"nombreColum_red\">$ms</div>";
}
?>
</body>
</html>
<? }?>