I list some values on one PHP page. After that, page scrolling needs to display the remaining values. For this, I added the ajax function on the same page. I have a ajax call like :
page = 1;
$.ajax({
url: test.php/category/?+"ajaxload=true&page="+page ,
dataType: "html",
success: function(html) {
}
});
From the above function, I passed the ajaxload and page variables. After that, I tried to retrieve these variables by using
$ajaxload = $_GET['ajaxload'];
$page = $_GET['page'];
But I didnt get any value. I am using the core PHP. So I defined the ajax function and retrieving the input value on the same page.
method:property blank