Как словить массив из php в js
Не получается никак ((
PHP
$bkauthors=$db->query("SELECT authors FROM books LIMIT 6");
$array_authors=[];
while ($bkauthors_real=$bkauthors->fetch_assoc()){
$array_authors[]=$bkauthors_real['authors'];
}
$json_authors= json_encode($array_authors);
JS
var b=JSON.parse('$json_authors');
console.log(b);
Опробовал уже много способов ничего не работает (
|