Ver Mensaje Individual
  #6 (permalink)  
Antiguo 18/11/2011, 08:36
calcifer1990
 
Fecha de Ingreso: noviembre-2011
Mensajes: 20
Antigüedad: 13 años, 1 mes
Puntos: 0
Respuesta: Autocomplementar con Jquery

perdón envié mal el código php en realidad seria algo asi


Código PHP:
Ver original
  1. $nit = $_POST[id]; *
  2. if (!$nit) return;
  3. *
  4. $sql = "(SELECT id
  5. * * * * * * *FROM tabla
  6. * * * * * * *WHERE LIKE '%id%' *";
  7. * * * *
  8. $result = mysql_query($sql);
  9. *
  10. $array_resultado =array();
  11. *
  12. while($rows = mysql_fetch_array($result)){
  13. * * $array_resultado = Array('key' => $rows[id], 'value' => $rows[id]);
  14. * * echo json_encode($array_resultado);
  15. }

recibo con POST y cambio el print_r() por json_encode($array_resultado);