| [3ec149c] | 1 | <? | 
|---|
|  | 2 | // ************************************************************************************************************************************************* | 
|---|
|  | 3 | // Aplicación WEB: ogAdmWebCon | 
|---|
|  | 4 | // Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla | 
|---|
|  | 5 | // Fecha Creación: Año 2009-2010 | 
|---|
|  | 6 | // Fecha Última modificación: Agosto-2010 | 
|---|
|  | 7 | // Nombre del fichero: Arrancar.php | 
|---|
|  | 8 | // Descripción : | 
|---|
|  | 9 | //              Implementación del comando "Arrancar" | 
|---|
|  | 10 | // ************************************************************************************************************************************************* | 
|---|
|  | 11 | include_once("../includes/ctrlacc.php"); | 
|---|
|  | 12 | include_once("../clases/AdoPhp.php"); | 
|---|
|  | 13 | include_once("../includes/constantes.php"); | 
|---|
|  | 14 | include_once("../includes/comunes.php"); | 
|---|
|  | 15 | include_once("../includes/CreaComando.php"); | 
|---|
|  | 16 | include_once("../includes/HTMLSELECT.php"); | 
|---|
|  | 17 | include_once("../idiomas/php/".$idioma."/comandos/arrancar_".$idioma.".php"); | 
|---|
| [86d5b32] | 18 | include_once("../idiomas/php/".$idioma."/comandos/opcionesacciones_".$idioma.".php"); | 
|---|
| [3ec149c] | 19 | //________________________________________________________________________________________________________ | 
|---|
| [69650cb] | 20 | // | 
|---|
| [3ec149c] | 21 | include_once("./includes/capturaacciones.php"); | 
|---|
|  | 22 | //________________________________________________________________________________________________________ | 
|---|
| [69650cb] | 23 | // | 
|---|
| [3ec149c] | 24 | $cmd=CreaComando($cadenaconexion); | 
|---|
|  | 25 | if (!$cmd) | 
|---|
|  | 26 | Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D. | 
|---|
|  | 27 | //________________________________________________________________________________________________________ | 
|---|
|  | 28 | ?> | 
|---|
|  | 29 | <HTML> | 
|---|
|  | 30 | <TITLE>Administración web de aulas</TITLE> | 
|---|
|  | 31 | <HEAD> | 
|---|
|  | 32 | <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | 
|---|
|  | 33 | <LINK rel="stylesheet" type="text/css" href="../estilos.css"> | 
|---|
|  | 34 | <SCRIPT language="javascript" src="./jscripts/Arrancar.js"></SCRIPT> | 
|---|
|  | 35 | <SCRIPT language="javascript" src="./jscripts/comunescomandos.js"></SCRIPT> | 
|---|
|  | 36 | <SCRIPT language="javascript" src="../clases/jscripts/HttpLib.js"></SCRIPT> | 
|---|
|  | 37 | <? echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/comunescomandos_'.$idioma.'.js"></SCRIPT>'?> | 
|---|
|  | 38 | </HEAD> | 
|---|
|  | 39 | <BODY> | 
|---|
|  | 40 | <? | 
|---|
|  | 41 | echo '<p align=center><span class=cabeceras>'.$TbMsg[5].' </span><br>'; | 
|---|
|  | 42 | //________________________________________________________________________________________________________ | 
|---|
| [69650cb] | 43 | // | 
|---|
|  | 44 | include_once("./includes/FiltradoAmbito.php"); | 
|---|
|  | 45 | //________________________________________________________________________________________________________ | 
|---|
|  | 46 | // | 
|---|
| [3ec149c] | 47 | include_once("./includes/formularioacciones.php"); | 
|---|
|  | 48 | //________________________________________________________________________________________________________ | 
|---|
| [69650cb] | 49 | // | 
|---|
| [3ec149c] | 50 | include_once("./includes/opcionesacciones.php"); | 
|---|
| [69650cb] | 51 | //_______________________________________________________________________________________________________ | 
|---|
|  | 52 |  | 
|---|
| [3ec149c] | 53 | ?> | 
|---|
|  | 54 | </BODY> | 
|---|
|  | 55 | </HTML> | 
|---|
|  | 56 |  | 
|---|