blob: d5c31b6a33b4dd25533f854efa7b97cbbf29bd21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<?php
// *************************************************************************************************************************************************
// Aplicación WEB: ogAdmWebCon
// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla
// Fecha Creación: Año 2009-2010
// Fecha Última modificación: Agosto-2010
// Nombre del fichero: Comando.php
// Descripción :
// Implementación del comando "EjecutarScripts"
// *************************************************************************************************************************************************
include_once("../includes/ctrlacc.php");
include_once("../clases/AdoPhp.php");
include_once("../includes/constantes.php");
include_once("../includes/comunes.php");
include_once("../includes/CreaComando.php");
include_once("../includes/HTMLSELECT.php");
include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php");
include_once("../idiomas/php/".$idioma."/comandos/opcionesacciones_".$idioma.".php");
//________________________________________________________________________________________________________
include_once("./includes/capturaacciones.php");
//________________________________________________________________________________________________________
//________________________________________________________________________________________________________
$cmd=CreaComando($cadenaconexion);
if (!$cmd)
Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
//________________________________________________________________________________________________________
?>
<HTML>
<HEAD>
<TITLE>Administración web de aulas</TITLE>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<LINK rel="stylesheet" type="text/css" href="../estilos.css">
<SCRIPT language="javascript" src="./jscripts/EjecutarScripts.js"></SCRIPT>
<SCRIPT language="javascript" src="./jscripts/comunescomandos.js"></SCRIPT>
<SCRIPT language="javascript" src="../clases/jscripts/HttpLib.js"></SCRIPT>
<?php echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/ejecutarscripts_'.$idioma.'.js"></SCRIPT>'?>
<?php echo '<SCRIPT language="javascript" src="../idiomas/javascripts/'.$idioma.'/comandos/comunescomandos_'.$idioma.'.js"></SCRIPT>'?>
</HEAD>
<BODY>
<?php
echo '<p align=center><span class=cabeceras>'.$TbMsg[5].' </span><br>';
//________________________________________________________________________________________________________
//
include_once("./includes/FiltradoAmbito.php");
//________________________________________________________________________________________________________
?>
<P align=center>
<SPAN class=subcabeceras><?php echo $TbMsg[10] ?></SPAN>
<form name="fdatos">
<table align=center class=tabla_datos border="0" cellpadding="0" cellspacing="1">
<tr>
<th><?php echo $TbMsg[12] ?></th>
<td><input type="radio" name="modoejecucion" value="false"><?php echo $TbMsg[13] ?>
<input type="radio" name="modoejecucion" value="true" checked><?php echo $TbMsg[14] ?>
</td>
</tr>
<tr>
<th> <?php echo $TbMsg[9]?> </th>
<td><textarea class="cajatexto" name="codigo" cols="70" rows="18"></textarea></td></tr>
<tr> <th align=center colspan="3"><?php echo $TbMsg[15] ?></th></tr>
</table>
</form>
<?php
//________________________________________________________________________________________________________
include_once("./includes/formularioacciones.php");
//________________________________________________________________________________________________________
//________________________________________________________________________________________________________
include_once("./includes/opcionesacciones.php");
//________________________________________________________________________________________________________
?>
<SCRIPT language="javascript">
Sondeo();
</SCRIPT>
</BODY>
</HTML>
|