
18/05/2010, 07:46
|
| | Fecha de Ingreso: febrero-2010 Ubicación: /home/México
Mensajes: 57
Antigüedad: 15 años 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 |