Ver Mensaje Individual
  #9 (permalink)  
Antiguo 22/03/2013, 08:34
Avatar de informacionsys
informacionsys
 
Fecha de Ingreso: mayo-2011
Ubicación: Bogota D.C
Mensajes: 793
Antigüedad: 13 años, 8 meses
Puntos: 76
Respuesta: Combobox + textbox

hola

mmmmmm prueba cambiando el archivo getuser.php por

Código PHP:
Ver original
  1. $q=$_GET["q"];
  2.  
  3. $con = mysql_connect('localhost', 'root', '');
  4.  if (!$con)
  5.    {
  6.    die('Could not connect: ' . mysql_error());
  7.    }
  8.  
  9. mysql_select_db("base", $con);
  10.  
  11. $sql="SELECT * FROM user WHERE id = '".$q."'";
  12.  
  13. $result = mysql_query($sql);
  14.  
  15. echo "<table border='1'>
  16. <tr>
  17. <th>Firstname</th>
  18. <th>Lastname</th>
  19. <th>Age</th>
  20. <th>Hometown</th>
  21. <th>Job</th>
  22. </tr>";
  23.  
  24. while($row = mysql_fetch_array($result))
  25.    {
  26.    echo "<tr>";
  27.    echo "<td><input type='text' value='".$row['name']."'></td>";
  28.    echo "<td><input type='text' value='".$row['lastname']."'></td>";
  29.    echo "<td><input type='text' value='".$row['age']."'></td>";
  30.    echo "<td><input type='text' value='".$row['hometown']."'></td>";
  31.    echo "<td><input type='text' value='".$row['job']."'></td>";
  32.    echo "</tr>";
  33.    }
  34.  echo "</table>";
  35.  


a lo que medio entendi eso es lo que buscas no ?