Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/10/2012, 14:18
Avatar de Fernarey1810
Fernarey1810
 
Fecha de Ingreso: noviembre-2008
Mensajes: 214
Antigüedad: 16 años, 4 meses
Puntos: 1
problemas con Autocomplete Plugin for JQuery

Estoy utilizando esta libreria para autocompletar un <input>. El problema es
que cuando quiero mostrar la letra "ñ" aparece este caracter �.
En la base de datos almaceno los nombres como "i&ntildeiguez"
Luego en php los muestro bien:

Código PHP:
Ver original
  1. $apellido  = str_replace('&ntilde', 'ñ', $myrowp['apellido']);

Este es el archivo PHP que usa el JQuery. EL PROBLEMA ES LA LINEA 30. SE SUPONE QUE EL CHARSET ESE DEBERIA QUITAR ESE CARACTER �, PERO NO LO QUITA
Código PHP:
Ver original
  1. <?php
  2. $aUsers = array("Iñiguez, Yamila","Rossi, Fernando","Mansilla, Juliana","Gonzalez, Ramon","Godoy, Ivan","Farias, Ivana","Rodriguez, Alejandro","Gauna, Mario","Pagura, Javier","Rosso, Carolina","Lopez, Marta","Farias, Agostina","Gauna, Amilcar","Farias, Agostina","Lopez, Jorge","Nuñz, Nu&ntildeez","Nuñez, Agostina","Nuñez, Agostina");
  3. $aInfo = array("Tostadodito","Tostado","Fortin inca","Villa minetti","Bandera","Tostado","Tostado","Tostado","Logro&ntildeo","Tostado","Tostado","Tostado","Logro&ntildeo","Logro&ntildeo","Tostado","Tostado","Tostado","Logro&ntildeo");
  4.  
  5. $input = strtolower( $_GET["input"] );
  6. $len = strlen($input);
  7. $limit = isset($_GET["limit"]) ? (int) $_GET["limit"] : 0;
  8. $aResults = array();
  9. $count = 0;
  10. if ($len)
  11. {
  12. for ($i=0;$i<count($aUsers);$i++)
  13. {
  14. if (strtolower(substr(utf8_decode($aUsers[$i]),0,$len)) == $input)
  15. {
  16. $count++;
  17. $aResults[] = array( "id"=>($i+1) ,"value"=>htmlspecialchars($aUsers[$i]), "info"=>htmlspecialchars($aInfo[$i]) );
  18. }
  19. if ($limit && $count==$limit)
  20. break;
  21. }
  22. }
  23. header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
  24. header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
  25. header ("Cache-Control: no-cache, must-revalidate");
  26. header ("Pragma: no-cache");
  27. sleep(1);
  28. if (isset($_REQUEST["json"]))
  29. {
  30. header("Content-Type: application/json; charset=UTF-8");
  31. echo "{\"results\": [";
  32. $arr = array();
  33. for ($i=0;$i<count($aResults);$i++)
  34. {
  35. $arr[] = "{\"id\": \"".$aResults[$i]["id"]."\", \"value\": \"".$aResults[$i]["value"]."\", \"info\":\"".$aResults[$i]["info"]."\"}";
  36. }
  37. echo implode(", ", $arr);
  38. echo "]}";
  39. }
  40. ?>