Hice esta aplicación hace tiempo para una web modular y quiero adaptarla al joomla con un Wrapper, pero no hay manera...
Código PHP:
<table width="388" border="0">
<tr>
<th width="378" align="center" scope="col"><img src="grafics/imatges/crono.jpg" width="509" height="100"></th>
</tr>
<tr align="center">
<th scope="col">
<?php
$fecha= date("Y");
$id=$_GET['any'];
if ($id){
include("$any");
}
else{
include("exp.php");
}
?>
</th>
</tr>
<tr>
<th align="center" scope="col"><form action= "index2.php" method= "get" >
Selecciona un any:<br>
<select name= any>
<?
//menu desplegable
$path="cron/exp/";
$dir = dir($path);
$dir->read();
$dir->read();
while($any = $dir->read()){
if (eregi("\.htm",$any)){
echo "$any";
echo "<OPTION VALUE=".$any.">".$any."</OPTION>\n";
}
}
echo "</SELECT>";
echo("<input type=submit value=Buscar>\n");
echo("<input type=hidden name=id value=6>\n");
echo ("</form>\n");
$dir->close();
?>
</th></tr>
</table>
Saludos.