Is there is a way to get the query string in a passed URL string in Rails?
I want to pass a URL string:
http://www.foo.com?id=4&empid=6 >
http://www.foo.com?id=4&empid=6
vars = request.query_parameters vars['id'] vars['empid']
etc..