You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know why the query string does not get passed as usual but I used this workaround to get the parameters: $params = null; parse_str(parse_url($_SERVER['REQUEST_URI'])['query'], $params);
Then you can use $params just like $_GET
Hello.
Retrieving a querystring in a paging system?
My URL is:
My Route is:
$router->controller("simpla/panel/car", "Example\\Car");
I want to retrieve the querystring by
$_GET
and move to the paging system.The text was updated successfully, but these errors were encountered: