este es mi codigo. no es cosa del otro mundo pero como puedo mostrar mis resultados horiontalmente.
Código PHP:
<?php
$sql_producto = "SELECT * FROM miusb_productos";
$rpta_producto = mysql_query($sql_producto) or die(mysql_error());
while($fila_producto = mysql_fetch_array($rpta_producto)){
?>
<table width="170" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="153">
<table width="153" border="0" cellspacing="0" cellpadding="0" id = "border_redon_producto">
<tr>
<td height="6"></td>
</tr>
<tr>
<td id = "titulo_codigo">Cod.: <?=$fila_producto['codigo_producto']; ?></td>
</tr>
<tr>
<td>
<div align="center">
<img src="productos/<?=$fila_producto['imagen_producto']; ?>" width="147" height="117" />
</div>
</td>
</tr>
<tr>
<td height="16" bgcolor="#E0E0DF"><img src="images/ver_detalle.jpg" width="151" height="14" /></td>
</tr>
<tr>
<td height="7"></td>
</tr>
</table>
</td>
<td width="54"> </td>
</tr>
</table>
<?php
}
?>