From: red Date: 2007-08-28T21:01:18+09:00 Subject: only one form_helper per rhtml in rails? hi, i'm writing an short rails-app for some friends of mine and now i came over an strange error?!?! i wrote an rhtml with 2 forms (both with form helpers), the only difference of them is that they use call different actions of the same controller. CODE: Gehaltsabrechnung ansehen:
<%= form_tag :controller => 'invoices', :action => 'show' %> <%= select(:invoice, :jahr, 2007..2107) %> <%= select(:invoice, :monat, 1..12) %> <%= submit_tag "show" %> <% end_form_tag %>

Gehaltsabrechnung erstellen:
<%= form_tag :controller => 'invoices', :action => 'create' %> <%= select(:invoice, :jahr, 2007..2107) %> <%= select(:invoice, :monat, 1..12) %> <%= submit_tag "Create" %> <% end_form_tag %> now i have the problem that only the first form works - if i submit on the second one the action of the first one is performed!!! please help!!! greetz red