Ver Mensaje Individual
  #2 (permalink)  
Antiguo 19/03/2007, 16:12
Avatar de HiTek
HiTek
 
Fecha de Ingreso: noviembre-2003
Ubicación: LF, Santiago.Chile
Mensajes: 217
Antigüedad: 20 años, 5 meses
Puntos: 0
Re: Formatea solo el primer registro

<?
...
echo "<tr />";
echo "</table>";
}
mysql_close();
?>

????????????????????????????


Código:
while ($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td width='10%' align=left>","$row[id_cliente]\n","</td>";
echo "<td width='30%' align=left>","$row[nombre]\n","$row[apellidos]\n","</td>";
echo "<td width='30%' align=left>","$row[email]\n","</td>";
echo "<td width='29%' align=left>","$row[fono]\n","$row[movil]\n","</td>";
echo "</tr>";
}
echo "</table>";

Última edición por HiTek; 19/03/2007 a las 16:58