Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/01/2003, 22:42
Avatar de chalito
chalito
 
Fecha de Ingreso: diciembre-2002
Ubicación: Santiago, chile
Mensajes: 221
Antigüedad: 21 años, 4 meses
Puntos: 0
que tal si lo haces asi...
Código PHP:
while($fila mysql_fetch_array($resultado));

echo 
'<table>';
for(
$j 0$j 2$j++) {
   echo 
'<tr><td>';
   for(
$i 0; $ < count($fila); $i++) {
      echo 
$fila[$i];
   }
echo 
'</td></tr>';
}
echo 
'</table>'
talvez funcione, aunque no lo he provado

Saludos