Look at the html of the form, it says for example

action= "user/create" method="post"


it means the form will be send to the server with a post to the path
user/create
rails router it RESTful (read about
REST<http://en.wikipedia.org/wiki/Representational_State_Transfer>),
if you type rake route in the console you will
see that if rails get send that request it will send the data in the page to
the create action
and take the values in the form and create a hash, you then have to process
the information
 in the controller.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to