hola
mmmmmm prueba cambiando el archivo getuser.php por
Código PHP:
Ver original$q=$_GET["q"];
if (!$con)
{
}
$sql="SELECT * FROM user WHERE id = '".$q."'";
echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
<th>Hometown</th>
<th>Job</th>
</tr>";
{
echo "<tr>";
echo "<td><input type='text' value='".$row['name']."'></td>";
echo "<td><input type='text' value='".$row['lastname']."'></td>";
echo "<td><input type='text' value='".$row['age']."'></td>";
echo "<td><input type='text' value='".$row['hometown']."'></td>";
echo "<td><input type='text' value='".$row['job']."'></td>";
echo "</tr>";
}
echo "</table>";
a lo que medio entendi eso es lo que buscas no ?