Viewing file: rutas.php (1.1 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?
//Funcion para los enlaces dentro de AIRE
function enlacesaire($ruta) {
global $izquierda, $centro, $derecha, $miruta;
switch ($ruta) {
case 0:
$izquierda="izquierda.php";
$centro="aire/analisis.php";
$derecha="aire/derecha.php";
$miruta="<table width='500' border='0' cellspacing='0' cellpadding='0'><tr><td><a href='#'>Observatorio</a> - <a href='#'>Bogotá Respira</a> - <a href='#'>Análisis</a></td></tr></table><br/>";
break;
case 1:
$izquierda="aire/null.php";
$centro="aire/null.php";
$derecha="aire/null.php";
$miruta="<table width='500' border='0' cellspacing='0' cellpadding='0'><tr><td><a href='#'>Observatorio</a> - <a href='#'>Bogotá Respira</a> - <a href='#'>Efectos</a></td></tr></table><br/>";
break;
case 2:
$izquierda="aire/null.php";
$centro="aire/null.php";
$derecha="aire/null.php";
$miruta="<table width='500' border='0' cellspacing='0' cellpadding='0'><tr><td><a href='#'>Observatorio</a> - <a href='#'>Bogotá Respira</a> - <a href='#'>Acciones</a></td></tr></table><br/>";
break;
};
}
?>
|