gracias
Código PHP:
<?php
// Configuraciones
$variable = 1;//seteamos a 0 el sumador
$valor = 5;//seteamos a 6 las imagenes a mostrar por cada linea
$directorio = opendir("/home/");
// Verificamos que el directorio tenga una diagonal al final
//if (substr($directorio,-1) != '/') {
// $directorio = $directorio.'/';
//}
echo "<table>\n<tr>\n";
while (false !== ($archivo = readdir($directorio))) {
$nombreArch = str_replace("", "Atras", ucwords($archivo));
if (strpos($archivo, '.jpg',1)) {
if($variable > $valor){
echo "<tr>\n";
}
echo "<td width='' height=''>\n<a href='$archivo'>";
echo "<img src='$archivo' width='140' height='110'";
echo " border=0>\n";
echo "";
echo "</td>";
if($variable >= $valor){// si es mayor o igual añadimos </TR>
echo "</tr>";
$variable = 0;//seteamos a 0 el sumador y volvemos a empezar si quedan mas imagenes
}//end if
$variable++;//empezamos a sumar +1
}
}//end while
closedir($directorio);
echo "</tr>\n</table>\n";
?>