i ve form like
<% form_tag ‘create’, :multipart => true do %>
Title: <%=text_field 'show','title'%>
Mobile Type: <%=text_field 'show','mobilename'%>
Price: <%=text_field 'show','price'%>
Description: <%=text_field 'show','description'%>
Image: <%= file_field 'upload','filename' %>
<%= submit_tag "Send Attachment" %> <% end %>in my controller
def create
@show =Show.new(params[:show])
…
i need to split params[:show] values or pls help me how to upload this
file…