Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/08/2005, 01:25
Avatar de DINASEN
DINASEN
 
Fecha de Ingreso: marzo-2003
Mensajes: 997
Antigüedad: 21 años, 2 meses
Puntos: 1
mostrar lso resultados en una tabla ?¿
claro que si
<table width="400" border="1">
<tr>
<td colspan="4"><div align="center">Resultados</div></td>
</tr>
<tr>
<td width="100">Nombre</td>
<td width="100">Apellidos</td>
<td width="100">edad</td>
<td width="100">pais</td>
</tr>
<?
while($row = mysql_fetch_array($_pagi_result)){
?>
<tr>
<td width="100"><?echo $row['nombre']?><td>
<td width="100"><?echo$row['apellido']?></td>
<td width="100"><?echo$row['edad']?></td>
<td width="100"><?echo$row['pais']?></td>
</tr>
<?
}//fin del while
?>
</table>

Por supuesto eso es solo una sugerencia ahora deberas adaptarlo a tus necesidades
yo prefiero usar echo <<<HTML para mezclar el html y el php

Un Saludo