Last change
on this file since 5d05b06 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:
976 bytes
|
Rev | Line | |
---|
[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: Noviembre-2005 |
---|
| 7 | // Nombre del fichero: toma_mes.php |
---|
| 8 | // Descripción : |
---|
| 9 | // Crea la tabla del mes y el año elegidos |
---|
| 10 | // ************************************************************************************************************************************************* |
---|
| 11 | |
---|
| 12 | include_once("../includes/ctrlacc.php"); |
---|
| 13 | include_once("../idiomas/php/".$idioma."/clases/Almanaque_".$idioma.".php"); |
---|
| 14 | |
---|
| 15 | // Toma parametros |
---|
| 16 | $pidmes=0; |
---|
| 17 | $pidanno=0; |
---|
| 18 | $pvitem=0; |
---|
| 19 | |
---|
| 20 | if (isset($_POST["idmes"])) $pidmes=$_POST["idmes"]; |
---|
| 21 | if (isset($_POST["idanno"])) $pidanno=$_POST["idanno"]; |
---|
| 22 | |
---|
| 23 | $mialmanaque= new Almanaque("tabla_meses"); |
---|
| 24 | $retorno=$mialmanaque->MesAnno($pidmes,$pidanno); |
---|
| 25 | echo $retorno; |
---|
Note: See
TracBrowser
for help on using the repository browser.