Skip to content

Instantly share code, notes, and snippets.

@daneharrigan
Created March 22, 2012 00:16
Show Gist options
  • Save daneharrigan/2154360 to your computer and use it in GitHub Desktop.
Save daneharrigan/2154360 to your computer and use it in GitHub Desktop.
rails form helpers
<%= form_for [@product, @image] do |f| %>
<%= f.file_field :file %>
<% end %>
<%= form_for @product do |f| %>
<%= f.text_field :name %>
<%= f.submit "Save" %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment