source: admin/WebConsole/varios/desplegablesambitos.php

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.2 KB
RevLine 
[043e67d]1<?php
[3ec149c]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: desplegablesambitos.php
8// Descripción :
9//               Devuelve el desplegable de un ámbito ( Usado sólo por AJAX)
10// *******************************************************************************************************
11include_once("../includes/ctrlacc.php");
12include_once("../includes/CreaComando.php");
13include_once("../clases/AdoPhp.php");
14include_once("../includes/comunes.php");
15include_once("../includes/constantes.php");
16include_once("../includes/HTMLSELECT.php");
17//________________________________________________________________________________________________________
18
19$ambito=0;
20
21if (isset($_POST["ambito"])) $ambito=$_POST["ambito"];  // Recoge parametros
22
23//________________________________________________________________________________________________________
24$cmd=CreaComando($cadenaconexion); // Crea objeto comando
25if ($cmd){     
26        echo tomaSelectAmbito($cmd,$ambito,0,$idcentro,250);
27}
Note: See TracBrowser for help on using the repository browser.