I have a Rails 3 application and I want to print in the view the request parameters. How do I do it?
Edit:
The purpose is to see what is being sent in a Form
Parameters are stored in the params hash. For example, if there was a title parameter, you could display it in your view using <%= params[:title] %>.
params
title
<%= params[:title] %>