Ver Mensaje Individual
  #18 (permalink)  
Antiguo 24/05/2005, 04:56
roylugones
 
Fecha de Ingreso: enero-2005
Mensajes: 150
Antigüedad: 19 años, 3 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);