Can I have multiple $_GET with the same key, different values?
get, php
Solution
Yes, use user[] as key. should work. PHP access all $_POST[] variables into an array?
Problem
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!