I\'m new to rails and trying to make a simple site to start learning. When I submit my form, however, the data isn\'t saved to the db. I\'m really not sure what\'s wrong, I\'ve
Ah hah! I updated my view to:
<%= form_for @calculate, :url => { :action => "create" } do |f| %> <%= f.label :number %> <%= f.text_field :number %> <%= f.label :root %> <%= f.text_field :root %> <%= submit_tag("Submit") %> <% end %>
And now it works. Awesome.