How to get the request / query parameters in Symfony?
In Symfony, developers can get the request parameter by using the following syntax:
$this->container->get('request');
$name=$request->query->get('name');
In Symfony, developers can get the request parameter by using the following syntax:
$this->container->get('request');
$name=$request->query->get('name');