Newbie: accessing form parameters in controller action?

That should work ok. Try this to inspect them easier in your logs:

logger.debug params.inspect

That should help you I think.

Tom Harrison wrote:

Here is the deal, the key "new_comment_title" is actually in the hash pointed to by "survey" so you would access it like this:

logger.debug params[:survey][:new_comment_title]

Tom Harrison wrote: