You can do it like a select form input:
url?param=value1¶m=value2¶m=value3
Depending on you language and library you should be able to get an array of values for param.
For example with asp.net mvc i do this to get an array of strings:
string[] values = Request.Form.GetValues("param");