Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/09/2005, 10:54
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Prueba algo asi:

Código PHP:
<table>
<?php
  
while ($row=mysql_fetch_array($result))
  {
?>
<tr>
<td><?php echo $row['campo'];?></td>
<td><?php if ($row1=mysql_fetch_array($result)) echo $row['campo'];?></td>
</tr>
<?php
  
}
?>
</table>