I want to know if it is possible to get values from this query string?
'?agencyID=1&agencyID=2&agencyID=3'
Why should I use a query string like this?
I have a form with 10 checkboxes. my user must send me the identifier of the news agencies that he or she is interested in. Therefore, to query a string, it contains several values with the same name. the total number of news agencies is variable and they are downloaded from the database.
I am using Python Tornado to parse query strings.
source
share