Ok, tenha seu .php
echo json_encode('name of your php array');
Então, no lado do javascript, seu ajax deve se parecer com isso:
$.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
}
});
talvez substitua data.length por 3 ou algo assim se você tiver muitos dados... se estiver obtendo os dados corretos, use yourJSArray.push(data[i]); Tenho certeza de que há uma maneira mais direta, na verdade...