![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)
![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)
<?php
include('conexion.php');
$sql=mysql_query("select * from usuarios where mail='[email protected]'");
$a= array (' ',' ','Nombres:','Apellidos:','Direccion:','E-mail:','Teléfono:','Fecha de Nacimiento:');
echo "<table width='220' border='4' align='center'>";
while($reg=mysql_fetch_array($sql)){
echo "<tr align='center'>";
for($k=2;$k<mysql_num_fields($sql);$k++){
echo "<td align='center'>"."<div align='center'>"."<span class='Estilo1'>".$a[$k]."</td>"."<td align='center'>"."<div align='center'>"."<span class='Estilo2'>".$reg[$k]."</td>";
echo "</tr>";
}
echo "<td colspan='2' align='center'>"."<div align='center'>"."<input type='submit' value='Editar'>";
}
echo"</table>";
?>