Is it possible to retrieve the arguments from a url where the same $_GET has different values?
Such as www.domain.com/?user=1&user=2
Currently this only shows whatever is listed second, so if I echo $_GET['user']
, it would output 2
I couldn't seem to find this on SO, so if I missed it please let me know.
Thanks for your help!