I am new to Ruby on Rails. I am trying to create a form and submit it and show the submitted values in a page. But i am getting error most often, can any one help me to work around this with any simple example or simple link?
Thanks,
Balan
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Simplest way to create a form without REST is
and then you can get to the value of the text field via
params[:name]. This will be available in a controller, for example.It would be helpful if you could provide exactly what error are you getting and an example of your code.