I have this url
/Home/GetAll?{"offset":0,"rowNumber":5,"sortExpression":"ID","sortOrder":"ASC","pageNumber":1}
How do I get the value of offset and other stuff individually in php?
I have this url
/Home/GetAll?{"offset":0,"rowNumber":5,"sortExpression":"ID","sortOrder":"ASC","pageNumber":1}
How do I get the value of offset and other stuff individually in php?
foreach($_REQUEST as $key=>$val){
$result=json_decode($key);
$offset=$result->offset;
echo $offset;
}