tag-it jquery プラグインを json 文字列で動作させようとしています。現在、次のようにデータベースから値を取得しています。
$query = sprintf(
'SELECT
t.tag
FROM
tags AS t
');
$row_set= array();
if($result = mysqli_query($db, $query))
{
// fetch data
while ($row = mysqli_fetch_assoc($result))
{
$row_set[] = $row;
}
// set the output
echo json_encode($row_set);
}
AJAX で呼び出すと、次の出力が得られます。
[{"tag":"test"},{"tag":"tests"}]
しかし、次の形式で JSON 文字列を出力する必要があります。
["android-intent","animate","architecture","artificial-intelligence","attributes"]
どうすればこれを達成できますか?