I'm coding with Ruby on rails 2.3.2 under BitNami RubyStack. When I call the upload controller, I get error like this:
compile error
C:/Users/BitNami RubyStack/killerapp/app/views/upload/index.html.erb:6:
unterminated string meets end of file
C:/Users/BitNami RubyStack/killerapp/app/views/upload/index.html.erb:6:
syntax error, unexpected $end, expecting ')'
The code of index view:
<% form_for :picture, :html => { :multipart => true } do |form| %>
<label for="first_name">First_Name:</label>
<%= form.text_field :first_name %>
<label for="last_name">Last_Name:</label>
<%= form.text_field :last_name %>
<%= submit_tag "upload" %>
<% end %>
String number 6 is:
<%= submit_tag "Upload" %>
What's the problem? Please, help me.