Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7418231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T07:50:56+00:00 2026-05-29T07:50:56+00:00

Okay so I have a Courses, students, and registrations table. I allow the student

  • 0

Okay so I have a Courses, students, and registrations table. I allow the student to login and their info is stored in a session variable.they can search for courses, choose ones they want which puts the course_id into a session variable. then after they put the courses in a chosen_courses page, they can click the register button to register them for the courses. This is supposed to take the course_id from the session[:course] and the student_id from the session[:student_id] and put them into one table called registrations. The course_id is a set and i know that I am supposed to loop through each course_id and add it to the table but I am not able to. I have posted my controller below and here are the files THE FILES ARE HERE!!!!
HERE IS THE CONTROLLER WITH CODE THAT PUTS COURSE_ID AND STUDENT_ID IN DATABASE FROM SESSIONS:

  def show 
  @register = Registration.new
  while session[:course].course_id != nill do             
      @register.student_id = session[:student_id].student_id
      @register.course_id = session[:course].course_id       
  end     
   @register.save
  end

HERE IS THE VIEW THAT DISPLAYS THE DATA FROM THE registrations database:

<% @register.each do |register| %>
<tr>
   <td><%= register.student_id %></td>
   <td><%= register.course_id %></td>
</tr>
<% end %>

Any help is appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T07:50:56+00:00Added an answer on May 29, 2026 at 7:50 am

    You can’t put models in your session so you can’t access them like that. You need to load in anything you need based on the id stashed in there.

    Here’s what I think you’re shooting for:

    def show 
      @register = Registration.new
    
      if (session[:course_id])
        if (course = Course.find_by_id(session[:course_id]))
          @register.student_id = course.student_id
          @register.course = course
        end
      end
    
      @register.save
    end
    

    Be sure to save only the course ID in the session and not the course itself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, so far, I have been taking computer science courses in my high school
Okay, I have 3 tables: Students Offered_subjects Enrollees_list Students will contain all the information
Okay, of course it is possible, that's no issue. In my code I have
Okay I have this RewriteRule which is supposed to redirect any request for the
Okay I have a large CRUD app that uses tabs with Forms embedded in
Okay I have a series of objects based on a base class which are
okay i have found the way to run a video in a image.... the
Okay I have updated my code quite a bit. I am getting a new
Okay I have updated my code a little, but I am still not exactly
Okay i have two models: posts and comments. as you can think comments has

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.