Hola, logré hacerlo asi pero no me muestra las imagenes en columnas de 3 filas:
Código PHP:
Ver originalforeach($campos as $dato){
if(in_array($dato, $archivo2) !== false){ $dato2 = str_replace('.'.$archi['extension'],'',$dato); echo "
<table>\n
<tr>\n";
if($variable > $valor){
echo "<tr>\n";
}
echo "
<td class='posada'>\n<a href='posada/ver_posada2.php?codigo=$dato2'>";
echo "
<img src='xxxx/xxxx/images/principal/$dato' width='170' height='170' border='0'>\n";
echo "<td></td>";
echo "<td></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
echo "</table>\n";
}
}
Como puedo mostrarlas?