para mostrar en 3 columnas y
2 filas las imagenes hasta ahora solo e conseguido
mostrarlas en una sola columnas
el codigo funciona pero necesito algun truco
<?php include("cn.php");
$query = "select * from foto ";
$rs=mysql_query($query);
$n=mysql_num_rows($rs);
?>
<table width="156" border="0">
<?
if($n){
while($row=mysql_fetch_array($rs)){?>
<? $contador = 0; ?>
<tr>
<td width="150"><img src="imagen/<? echo $row["foto"] ?>.jpg" width="150" height="150"></td>
<? if($contador > 3) { ?>
<? echo "<td> </td>"; ?>
<? } ?>
</tr>
<? }
}?>
</table
<?php include("cn.php");
$query = "select * from foto ";
$rs=mysql_query($query);
$n=mysql_num_rows($rs);
?>
<table width="156" border="0">
<?
if($n){
while($row=mysql_fetch_array($rs)){?>
<? $contador = 0; ?>
<tr>
<td width="150"><img src="imagen/<? echo $row["foto"] ?>.jpg" width="150" height="150"></td>
<? if($contador > 3) { ?>
<? echo "<td> </td>"; ?>
<? } ?>
</tr>
<? }
}?>
</table>