Código:
y las enlisto:CREATE TABLE agenda ( codigo int(11) NOT NULL auto_increment, nombre varchar (60) default NULL, movil int (20) default NULL, local int (20) default NULL, otro int (20) default NULL, PRIMARY KEY (`codigo`) )
Código PHP:
<?
while($rs=mysql_fetch_array($sql))
{
echo "<tr>"
."<td>".$rs['nombre']."</td>"
."<td>".$rs['movil']."</td>"
."<td>".$rs['local']."</td>"
."<td>".$rs['otro']."</td>"
."</tr>";
}
?>
<a href="
en cambio en local si salen los nueros que ingreso pero son con formato 31576790
alguien me podria decir en que estoy mal? :(