OK, miej swój .php echo json_encode('name of your php array');
Następnie po stronie javascript twój ajax powinien wyglądać mniej więcej tak:
$.ajax({
data: "query string to send to your php file if you need it",
url: "youphpfile.php",
datatype: "json",
success: function(data, textStatus, xhr) {
data = JSON.parse(xhr.responseText);
for (i=0; i<data.length; i++) {
alert(data[i]); //this should tell you if your pulling the right information in
}
});
może zamień data.length na 3 lub coś w tym stylu, jeśli masz dużo danych... jeśli otrzymujesz właściwe dane, użyj yourJSArray.push(data[i]); Jestem pewien, że istnieje bardziej bezpośredni sposób...