Hi,
I am trying to send multiple values for the same parameter name in a GET request like this:
In my controller, I get the parameters with the following code:
$params = $this->request->getQuery();
And I obtain this:
array(2) { ["_url"]=> string(7) "/module" ["p"]=> string(6) "value2" }
So I guess that the getQuery function retrieves only the last value defined in the query.
Is there a simple way to retrieve an array of these values via Phalcon or do I have to change the format of my query and split it?