I\'m trying to send back multiple variables from a php file to ajax using json in an array. The code in the php file works perfectly and does everything with my database lik
Try defining the error handler as part of the $.ajax call
$.ajax({ ..., error: function(xml, error) { console.log(error); } });
Then check your debugging console for any errors that can help you diagnose the problem.