From: Robert Klemme Date: 2004-10-05T19:59:56+09:00 Subject: Re: WEBrock question "George Moschovitis" schrieb im Newsbeitrag news:1096969518.285852.87620@h37g2000oda.googlegroups.com... > Hello everyone, here is a small webrick question: > > when passing the following url to a webrick-servlet: > > http://www.mysite.com/index.html?param=1;param=2;param=3 > > i get: > > request.query["param"] => 1 > > and not > [1, 2, 3] > > like in cgi.rb > > any workarounds? You probably wanted http://www.mysite.com/index.html?param=1¶m=2¶m=3 Note: "&" is the separator and not ";". Kind regards robert PS: Was it a typo or on purpose?