Hello friends, i want to know if how to call a php oop class function like mainCategory using ajax, this is the code for ajax,
and this is for the php
I made it with codeIgniter but without codeigniter i can't call the funtion, , any reply are appreciated. . :D
Code:
var d = "Zick"; $.ajax({ type: "post", url: "e_class.php/mainCategory", data:{ d:d }, success: function(inlog){ alert(inlog); } });
Code:
class E_class { public function mainCategory() { echo $_POST['d']; } }
Comment