Created
March 28, 2011 14:27
-
-
Save calicaixeta/890556 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= 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"]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= 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