Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/05/2010, 07:46
m0m0o
 
Fecha de Ingreso: febrero-2010
Ubicación: /home/México
Mensajes: 57
Antigüedad: 14 años, 2 meses
Puntos: 0
Respuesta: ayuda con script.

metelos en una tabla :P

Código:
<table>
      <tr>
        <th>campo 1</th>	  
        <th>campo 2</th>
      </tr>
	  <?	  
	  $i=0;
		while ($record= mysql_fetch_array($result)){  
// o 	while ($registro= mysql_fetch_object($exe)){ o lo que tu tienes jeje
	  ?>
      <tr>
        <td><? echo $registro[0]?></td>
        <td><? echo $registro[1]?></td>
      </tr>
	  <? $i++;
	   }  ?>
    </table>
saludos