Ver Mensaje Individual
  #6 (permalink)  
Antiguo 03/06/2008, 14:50
Avatar de jaronu
jaronu
 
Fecha de Ingreso: febrero-2008
Mensajes: 2.183
Antigüedad: 16 años, 2 meses
Puntos: 52
Respuesta: Mostrar Horizontal

llamando como?? asi


Cita:

<table><tr>
<?
$i= 0;
while($myrow= mysql_fetch_array($result))
{
if($i%4==0)
{
echo "<td>$myrow['imagen']</td></tr><tr>";
}
else {
echo "<td>$myrow['imagen']</td>";
}
$i++;
}
?>
</tr></table>