I'm looking into what is the best way to pass multiple values for the same parameter name via URL in PHP and then get those results.
Example:
http://www.example.com?color=blue&color=red&color=green
For some reason all the answers I can find is for other programing languages...
?color=red,green,blueand then explode it on the server sideexplode(',', $_GET['color'])