Hi ,
I want to call a method from a class through ajax.
The class is something like this :
class MyClass{
public function myMethod($someParameter,$someParameter2){
//do something
return $something;
}
private function myMethod2($someParameter3){
//do something
return something;
}
}
Can i use ajax to call a class method (myMetod(2,3)) and with the return to do someting?
Can i use it like this?
$.ajax({
url : 'myClass.php',
data : {
someData: '2,3',
}
type : 'POST' ,
success : function(output){
alert(output)
}
});
You need to create php script that calls this class method and can be called as ajax request. Create a file like:
For Example:
myfile.php
And change your jQuery code to: