Ok, hai il tuo .php echo json_encode('name of your php array');
Quindi sul lato javascript il tuo ajax dovrebbe assomigliare a questo:
$.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
}
});
forse sostituisci data.length con 3 o qualcosa del genere se hai molti dati ... se stai ottenendo i dati giusti usa yourJSArray.push(data[i]); Sono sicuro che in realtà c'è un modo più diretto...