On Oct 30, 12:09 am, "Ishara Gunathilake" <[EMAIL PROTECTED]>
wrote:
> no, suppose that there's a person who has logged in to a site
> and when he fill a form so the data should be stored in a table
> with his user id which has stored in his session. so how can
> i store it.
>

You could access the session in the controller at the time the user
submits.
Depends on what your authentication system does.
For instance it might be session[:user].  So you have to do something
like
  user=User.find(session[:user])
or
  User.exists?(session[:user])
to verify the user id is valid.
There may be helper methods which come with whatever plugin or system
you're using
so you should check them out.

If you don't have a system, there are quite a few.
acts_as_authenticated, restful_authentication to name 2.
You'll need to install one of them and read how to use it.


--
Daniel Bush
--~--~---------~--~----~------------~-------~--~----~
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 rubyonrails-talk@googlegroups.com
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