i have a session variable called user_id,i want to store
it in a table named blogs
t.column :user_id,
t.column :title,
t.column :body,

i have a form which includes title and
body,i can save them in the table, here is my code

def forum
if request.post? and params[:blog]
@blog = Blog.new(params[:blog])
if @blog.save
flash[:notice]="posted"
else
flash[:error]="not posted"
end
end
end

--~--~---------~--~----~------------~-------~--~----~
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