am passing the hash in radio button option in my view like
<% @h[k].each do |val| %> <%= radio_button_tag(k, val)%>
<%= val %>
<% end %>
while selcting the radio buttons it passes the hash ( keys and values) to the database..
how can i access the the passed parameter in controller. inorder to update the count field based on the selection .
any help on this..