Skip to content

Instantly share code, notes, and snippets.

@gcaixeta
Created March 28, 2011 14:27
Show Gist options
  • Save gcaixeta/890556 to your computer and use it in GitHub Desktop.
Save gcaixeta/890556 to your computer and use it in GitHub Desktop.
<%= form_tag selected_categories_path, :multipart => true do %>
<%= text_field_tag 'dog[]', "dog1" -%>
<%= text_field_tag 'dog[]', "dog2" -%>
<%= file_field_tag 'attachment' -%>
Parameters: {"dog"=>["dog1dog2"]}
<%= form_tag selected_categories_path, :multipart => false do %>
<%= text_field_tag 'dog[]', "dog1" -%>
<%= text_field_tag 'dog[]', "dog2" -%>
<%= file_field_tag 'attachment' -%>
OR
<%= form_tag selected_categories_path, :multipart => true do %>
<%= text_field_tag 'dog[]', "dog1" -%>
<%= text_field_tag 'dog[]', "dog2" -%>
Parameters: {"dog"=>["dog1", "dog2"]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment