
03/06/2008, 14:50
|
 | | | Fecha de Ingreso: febrero-2008
Mensajes: 2.183
Antigüedad: 17 años 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>
|