Get value from database using ajax, connection issue.

ebinnasir wrote:

$.ajax({
url: “get_store_status.php”,

You need to use a correct URL.

If your script (get_store_status.php) is a standalone script, you cannot use the PHPMaker global function ExecuteQuery(). You may want to use Route_Action server event instead.Note that routing is used, you should not access a file by its file name. (NOT /my/path/…/xxx.php). You should use the route of your Custom File, e.g. “/basepath/route” (with the base path of your site).Also note that if you use Custom File with Include common files (so you can use global functions), and you put your output in the file content, the output is with other HTML, not just your JSON. That’s why you better use Route_Action event in your case. You better follow the example 4 in Ajax by API and Client Scripts.