Is there a standard way of passing an array through a query string?
To be clear, I have a query string with multiple values, one of which would be an array value.
Check the parse_string function http://php.net/manual/en/function.parse-str.php
parse_string
It will return all the variables from a query string, including arrays.
Example from php.net: