G
George Moschovitis
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?
George Moschovitis
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?
George Moschovitis