
24/05/2005, 04:56
|
| | Fecha de Ingreso: enero-2005
Mensajes: 150
Antigüedad: 20 años, 2 meses Puntos: 1 | |
Código:
$handle = opendir("fotos");
while($file = readdir($handle)) {
if ($file != "." && $file != ".." && $file != "Thumbs.db"){
$fichero = "fotos/".$file;
echo '<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
<tr>
<td width="26%" bordercolor="#FFFFFF"> <div align="left"><img src="' . $fichero . '" width="139" height="150" border="0"></div></td>
</tr>
</table>';
}
}
closedir($handle);
|