require_once 'MECON/HTML/Tabla.php';
require_once 'HTML/Table.php';
-if(!isset($_SESSION['documento']))
-{
- die ('El usuario no se encuentra logueado en la Intranet');
-}
-
-//CREO LA CONEXION A LA BASE DE DATOS
-$dbh = DB::connect("mysql://intranet:intranet@bal747f/bandas",true);
-if (DB::isError($dbh)) {
- die ($DB->getMessage());
+if(!isset($_SESSION['documento'])) {
+ header('Location: ../../login?redirect='.urlencode($_SERVER['REQUEST_URI']));
+ exit;
}
$nrodoc = $_SESSION['documento'];
$fecha = $_GET['fecha'];
//CREO LOS OBJETOS NECESARIOS
-$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$dbh);
+$agente =& new BandasNovedades_AgenteBanda($nrodoc,new date($fecha),$DB);
$pagina =& new HTML_Page(array( 'doctype'=>'HTML 4.01 Transitional',
'charset'=>'iso-8859-1'));
$pagina->updateAttributes(array('onload'=>'javascript:window.print()'));