jquerycatcompleteのjsonが必要です。私を助けてほしいです...
私はこのコードを持っています
$( ".autocomplete" ).autocomplete({
source: "files/news.php?listar=json"
});
そして、「files / news.php?listar=json」に次のようなものを表示させたいと思います。
[
{ label: "title1", category: "category1" },
{ label: "title2", category: "category2" }
]
手伝っていただけませんか?
@編集:
私はこれを試しましたが、うまくいきませんでした:
if ($_GET['listar'] == 'json')
{
echo '['."\n";
$query = mysql_query("SELECT * FROM noticias WHERE deletada='0' ORDER BY id DESC");
$a = 0;
while ($noticia = mysql_fetch_array($query))
{
echo ' { label: "'.$noticia['titulo'].'", category: "'.ucwords(Categoria($noticia['categoria'])).'" }';
$a++;
if ($a < mysql_num_rows($query))
{
echo ",\n";
}
}
echo "\n".']';
exit;
}