lgromero-new-oglive
Last change
on this file was
b6ec162,
checked in by Ramón M. Gómez <ramongomez@…>, 6 years ago
|
#834: Remove all redundant PHP closing tags.
|
-
Property mode set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | <?php |
---|
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: Abril-2010 |
---|
7 | // Nombre del fichero: opcionesacciones.php |
---|
8 | // Descripción : |
---|
9 | // Captura de parámetros comunes para la ejecución de comandos |
---|
10 | // ************************************************************************************************************************************************* |
---|
11 | //________________________________________________________________________________________________________ |
---|
12 | // Captura parámetros |
---|
13 | //________________________________________________________________________________________________________ |
---|
14 | $idcomando=0; |
---|
15 | $ambito=0; |
---|
16 | $idambito=0; |
---|
17 | $nombreambito=""; |
---|
18 | $funcion=""; |
---|
19 | $atributos=""; |
---|
20 | $gestor=""; |
---|
21 | |
---|
22 | if (isset($_POST["idcomando"])) $idcomando=$_POST["idcomando"]; |
---|
23 | if (isset($_POST["descricomando"])) $descricomando=$_POST["descricomando"]; |
---|
24 | if (isset($_POST["ambito"])) $ambito=$_POST["ambito"]; |
---|
25 | if (isset($_POST["idambito"])) $idambito=$_POST["idambito"]; |
---|
26 | if (isset($_POST["nombreambito"])) $nombreambito=$_POST["nombreambito"]; |
---|
27 | if (isset($_POST["funcion"])) $funcion=$_POST["funcion"]; |
---|
28 | if (isset($_POST["atributos"])) $atributos=$_POST["atributos"]; |
---|
29 | if (isset($_POST["gestor"])) $gestor=$_POST["gestor"]; |
---|
30 | |
---|
31 | |
---|
Note: See
TracBrowser
for help on using the repository browser.