50 likes | 229 Views
Online Course Registration Problem. Problem description. Create a JSP or Servlet page allow student login to your system to register courses. Create a JSP or Servlet page allow student register courses. Each student we will store information: + ID (PK) + FirstName + LastName + Username
E N D
Problem description • Create a JSP or Servlet page allow student login to your system to register courses. • Create a JSP or Servlet page allow student register courses.
Each student we will store information: + ID (PK) + FirstName + LastName + Username + Password + Email
Each class we will store information: + ID (PK) + Class ID (Varchar (100)) + Course Code (Varchar (50)) + Course Name (Varchar (100)) + Credit (Integer Number) + Cost (the money student must to pay) + Class Capacity
Student Register Class We will store the information: + StudentID (FK to Student.ID) + ClassID (FK to Classes.ID)