Пример #1
0
<?php

session_start();
if ($_SESSION['token'] != $token) {
    session_destroy();
    moveLocation("../ingreso.php", 0, 2);
}
include_once "../../main_Lib.php";
session_autorefresh();
//dpr($_GET);
include_once "../../class/class_ramo.php";
include_once "../../class/class_alumno.php";
$class_ramo = new ramo();
?>

<!-- It's important to use the ntb namespace in the HTML tag or the grid will not render -->
<html xmlns:ntb>
<?php 
echo '<?xml version="1.0" encoding="charset=iso-8859-1"?>';
?>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" >
<title>Ramos - <?php 
echo $_SESSION['colegio']->nombre;
?>
</title>

<link type="text/css" rel="stylesheet" href="../../css/tabs.css"></link>

<link type="text/css" rel="stylesheet" href="../../nitobi/style/samples.css"></link>
Пример #2
0
function header_secretaria($titulo_browser = "Secretaria", $path = "../", $js = "")
{
    echo "<head>";
    session_autorefresh();
    echo '
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
        <script src="' . $path . 'js/jquery.js" type="text/javascript"></script>
        <link rel="stylesheet" href="' . $path . 'jquery.tablesorter/css/jq.css" type="text/css" media="print, projection, screen" />
        <link rel="stylesheet" href="' . $path . 'jquery.tablesorter/themes/blue/style.css" type="text/css" id="" media="print, projection, screen" />
        <link rel="stylesheet" href="' . $path . 'css/tablas.css" type="text/css" id="" media="print, projection, screen" />
        <link rel="stylesheet" href="' . $path . 'css/main.css" type="text/css" id="" media="print, projection, screen" />
        <link href="' . $path . 'css/dock_menu.css" rel="stylesheet" type="text/css" />
        <script type="text/javascript" src="' . $path . 'jquery.tablesorter/jquery.tablesorter.js"></script>
    	<script src="' . $path . 'js/index.js" type="text/javascript"></script>
        <script src="' . $path . 'js/' . $js . '" type="text/javascript"></script>
        <script type="text/javascript" src="' . $path . 'js/interface.js"></script>
        <title>' . $titulo_browser . '</title>
    ';
    /*
          echo '
          <!--[if lt IE 7]>
          <script type="text/javascript" src="'.$path.'js/unitpngfix.js"></script>
          <![endif]-->
     ';
    */
    echo "</head>";
}