Ok, tenga su .php echo json_encode('name of your php array');
Luego, en el lado de javascript, su ajax debería verse así:
$.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
}
});
tal vez reemplace data.length por 3 o algo así si tiene muchos datos ... si obtiene los datos correctos, use yourJSArray.push (datos [i]); Estoy seguro de que hay una forma más directa en realidad...