Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/12/2011, 22:00
Avatar de Chico3001
Chico3001
 
Fecha de Ingreso: septiembre-2011
Ubicación: Mexico, DF
Mensajes: 112
Antigüedad: 12 años, 7 meses
Puntos: 12
Respuesta: Repetir tabla de resultados de manera horizontal??

Saca el tag TR del ciclo while... y cierralo al final del ciclo:

Código PHP:
<table width="130" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<?php
while ($mixRow $objDbResult->FetchArray()) {
//print_r($mixRow);
?>
<?php 
//echo $mixRow['MarIdMar'];?>
<?php 
// echo $mixRow['MarDescripcionMar'];?>
    <td width="130" align="center" valign="middle" bgcolor="#FFFFFF" style="text-align: center"><a target="_blank" href="detalle_producto.php?id=<?php echo $mixRow['veh_id_veh']; ?>"><img src="imagen/uploads/thumbs/<?php echo $mixRow['veh_imagen_veh'];?>" alt="producto xx" width="120" height="90" hspace="0" vspace="0" align="middle" class="img_thumbnail2" /></a></td>
<?php
}
?>
</tr>
<tr>
    <td height="19" align="center" valign="middle" bgcolor="#FFFFFF" style="font-size: 5px"></td>
</tr>
</table>