Is there an option in PHP via (php.ini) probably to recognize a parameter passed multiple times in the URL as an array?
/cars.php?color=A&color=B
The above query should result in an array of colors ['A','B'] instead of the second parameter 'B' overwriting the first parameter 'A'