how to access function in PHP with Ajax feuture in AW?
i found the example in AW:
var req = new AW.HTTP.Request;
req.setURL('<url>');
req.response = function(text) {
alert(text); // do something with response here
};
req.request();
if the url is myscript.php and there's php function in the file.
how to access the function from AW like AJAX in the http://www.modernmethod.com/sajax/sajax-0.12/php/example_multiply.php
var req = new AW.HTTP.Request;
req.setURL('<url>');
req.response = function(text) {
alert(text); // do something with response here
};
req.request();
if the url is myscript.php and there's php function in the file.
how to access the function from AW like AJAX in the http://www.modernmethod.com/sajax/sajax-0.12/php/example_multiply.php
winotosw
April 15,