Hi
I have a search box put in a form that I want when I submit I get redirected to an other page where I get results
the problem is I can't get the right link in the target page and I am unable to make pagination because params is not set
let's say I have the home page with the form:
<%= form_tag(result_path(:q => :term)) do %>
<%text_field :term %>
<div><%= submit_tag 'Search' %></div>
<% end %>
and result page like this:
<%= form_tag(result_path(:q => :term)) do %>
<%text_field :term %>
<div><%= submit_tag 'Search' %></div>
<% end %>
<div>
<% @results.each do |results| %>
<!-- do smth with results-->
<% end %>
<%= will_paginate @results %>
</div>
when I click Search button, I get result page but not like expected,
I get:
http://localhost:3000/result
and what I expected
http://localhost:3000/result?q:term
How can I solve this problem: making the query in a page and getting the results in others page
without losing the normal behaviour of pagination and target form
rgds,