I was having trouble getting a jQuery Ajax call's success function to work properly and it was pointed out to me that the reason was that my PHP function was using return $result when I should be using echo $result.
Changing the PHP function that the Ajax called from "return $result" to "echo $result" fixed the problem, but why? There's loads of explanations as to the difference between the two (return and echo) in terms of PHP scripts, but how do they differ when sending that value to an Ajax call?
Echo is for display, while return is used to store a value, which may or may not be used for display or other use.
Summary: 1. AJAX is a group of technologies that allows web applications to retrieve data from the server asynchronously; PHP is a scripting language designed to produce dynamic web pages.
The problem ajax returns immediately and the next statement, return result; , is executed before the function you passed as success callback was even called.
It receives the returned data and the value of dataType , and must return the (possibly altered) data to pass on to success . success callback option is invoked, if the request succeeds. It receives the returned data, a string containing the success code, and the jqXHR object.
Well, the ajax call reads the response from the server, and that response must be rendered as some type of readable data, such as application/json
or text/html
.
In order to write that data, you need to echo
it from the server with PHP.
The return statement doesn't write data, it simply returns at the server level.
An Ajax call uses the response of an HTTP request. A PHP script doesn't generate output by returing, but by echoing.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With