$page = $_GET['page']; // get the requested page $limit = $_GET['rows']; // get how many rows we want to have into the grid echo “limit: “.$limit; $sidx = $_GET['sidx']; // get index row – i.e. user click to sort $sord = $_GET['sord']; // get the direction
rest of code here…
i printed $limit var and i get a empty value.
EDIT:
I tested all grid vars ($page, $limit, $sidx, $sord) and all post empty values at PHP file.