I'm completely new to PHP, Javascript, jQuery etc. so I'm finding this very confusing.
I have written a php file that echoes JSON code. I'm then trying to store this response into a Javascript variable on the client, like so:
var res;
$.getJSON("my_php_file", { some_param: "param" },
function(data) {
res = data;
}
});
Instead, the web browser just opens the response JSON in the current window, rather than saving the result to res. Why is this?
Thanks