Online Course Registration System
Online Course Registration System
Online Course Registration System
University of Florida
The need for structured storage, modification and maintenance of huge amounts of data
has resulted in the emergence of the Database Management System (DBMS) as one of the core
fields in the Computer Science industry. DBMS is the system of computer software that is aimed
to provide a managing tool for maintaining the data, through various data models.
The purpose of implementing this project is to understand the data modeling concepts that is
used in a real time scenario and to implement a fully functional database system which interacts
with a front end interface.
Any database system can be chosen as the back-end such as Oracle, MySQL, Microsoft SQL
Server, DB2, Access. Any web server can be chosen for the front end such as Tomcat, Glassfish,
JRun, etc. Any server side language can be chosen such as PHP, JSP, ASP, etc.
3. Project Specification
A high level description of the project:
• Each student has a unique student ID and a profile. The profile includes first/last names,
gender, date of birth, local address, department, enrolled year, username, login password,
and may have a picture. You can also add other necessary information.
• Each instructor has a unique faculty ID and a profile. The profile must indicate the
instructor’s department(s). An instructor may work at more than one department.
• A department has a unique department ID, a name, and a list of faculties.
• Each course has a course number, an instructor, given department, term, credits,
classroom, periods, prerequisite courses, textbooks, and other information you think is
necessary.
• A classroom has a unique ID and a unique location. Classrooms can hold more than one
course each term, but these courses cannot conflict in time. Classrooms have
capacities. Registered students’ number cannot exceed the classroom capacity.
• Must maintain all the courses a student has already taken/registered. This is used to
check course prerequisites when registration.
• Students may login (with username and password) to the system to register courses
or retrieve all the courses they have already taken/registered.
• Instructors may login (with username and password) to the system to add courses
or retrieve all the courses they have already given/added.
• A student cannot register a course if: 1) he/she doesn’t meet the prerequisites, 2) the
students registered in the course exceed the capacity of the classroom, 3) the course has a
time conflict with other courses in the same term.
• An instructor cannot add a course if: 1) the classroom has already occupied by another
course in the same period, 2) he/she has another course in the same period, 3) he/she is
not affiliated to the department of this course.
• A day has 12 periods and a week has 5 days. Instructor provides periods when
adding courses to the system.
• Students may retrieve all the courses given by a department, an instructor, or held in
a specific period.
• There can be an arbitrary number of students/instructors/departments/classrooms/courses
This project gave us a hands-on experience on developing the entire project using MySQL,and
PHP using the Apache Server. We learnt several ways to optimize when designing the database
and made quick and rational decisions when developing the project by implementing the
procedures taught in class.
We could clearly indentify the balance we had to maintain when choosing between efficiency
and performance.
5. ER Diagram
6. Design Schema
Create table Student (
studentId int Primary Key ,
firstName varchar(30) not null,
lastName varchar(30) not null,
profilepic blob,
gender varchar(1),
dob date,
address varchar(200),
deptId int,
homepage varchar(70) default null,
yearEnrolled varchar(15) not null,
overallGPA float (3,2),
foreign key (deptId) references Department(dept_id)
);
Major design decisions in the project were discussed and entered in a shared online
Google document so that as and when someone thinks of a new idea for bonus functionality we
were able to add in the document and share it with the other person (2 in a team).
The design schema and other field information were also stored and work performed on a
day-by-day basis was logged so that we were aware on the progress of the project.
We used PNG pictures for storing the profile picture information and found that the
storage space went to big numbers. We then changed the type of data and made it as a jpeg
picture.
We missed the term field in the classroom table initially and had to add the field later to
keep track of the class room information for previous semesters.
We had not thought about the graduation date field for a student. When trying to
implement a realistic system this field had to be in place to segregate the graduated students and
other current students.
- Can edit his profile data i.e. address/homepage/email id information and update.
- Register a course
- Constraints checked here include
▪ MAX courses registered this semester, in our system its 3,
▪ Course previously not registered,
▪ Seats lefts in the course,
▪ Prerequisite course registered and
▪ Conflicts in timing with other currently registered courses.
- Can view the list of courses using the department and instructor parameters.
- Can view the list of courses using the day and period parameters.
- Can also request for graduation, we have enforced a minimum of 10 courses for a student
to graduate, If this request is not met the graduation request is denied else it if forwarded
to the graduate advisor.
- Can edit Course details - Details such as Seats left - to increase or decrease the capacity
of the course (seats cannot be more than class capacity)
- Can add a new course to the database under his profile and department.
- The input parameters in the form are checked for valid input data before updating the
database.
- Conflicts with the instructor's schedule as well as conflicts in timing with other courses in
the same classroom are checked.
- Can view classroom availability as well as maximum capacity of classroom when course
information is updated or new classroom is added
- Instructor can view info of all the students registered in the courses he/she is handling.
Any rich web system should have lots of data to work on and implement all the
functionalities. With all the functionalities built and with less data the system would be a boring
application to work on. We wanted to make the application rich and interesting to the person
who wanted to use it. Our first challenge (apart from designing schemas and building the tables)
was to load the database with lots of information. How?
We coded a python script (attached to the appendix) which was used to parse a html file from the
internet and extract the needed information. The CISE student and instructor pages were scanned
and information was retrieved. The next step was to code the functions in the python code to
generate random values for fields we didn’t have in the html file.
For example:
path = "deptNames\inDeptNames.txt";
fileContents = file ( path ).read()
fileSQLcode = file ('deptNames\outSQLDeptNames.txt','w')
#INSERT INTO Department VALUES (1, “Computer Science”);
count = 1
for deptName in fileContents.split('\n'):
#print deptName
#INSERT INTO Department VALUES (1, “Computer Science”);
fileSQLcode.close()
Any new functions or new logic added to the PHP file was very difficult to comprehend
without the comments. Hence lots of comments were added to the code to make it easy for the
other team member to comprehend and extend the logic of the code.
Security:
We used a front-end software for modifying and executing the mySQL commands
(similar to a Microsoft SQL Server interface). The name of the software is Heidi and its open
source. We set encryption and locked the database when not in use. All the queries executed
using PHP were first tested in this software and results were verified.
Backups:
We made it a point to save backups of the entire PHP collection files and DATABASE
everyday with the timestamp. We went back to previous versions of the code whenever the
current code got unstable or we were faced with unexpected weird results.
All the images, header banners were designed in Adobe Photoshop 9 and a basic template
(CSS) was used for all the pages.
9. Scope
The main aim of the project is to learn the intricacies of modeling the data base with the
given requirements and using a web based interface to interact with the back end keeping in
mind the data consistency and the stability of the entire system.
Since the system is developed with a web based interface, we can start executing the model with
parallel executions with the confidence that the back end MySQL data store will take care of the
concurrent transactions. The ACID (Atomicity, Consistency, Isolation, Durability) property of
the database helps to keep the system consistent and stable.
Deadlines Met:
Phase1 Deadline – Nov 10th
Phase2 Deadline – Dec 17th
14. Screen shots and links explained
Index.php -> This is the index page, any new user is directed to this page. The page
simply asks for username and password from the user and depending on the user type – student,
instructor or administrator, the user is directed to appropriate homepage.
The screen shot of instructor’s home page is shown below and also the side links are explained
Fig: Instructor home page
editProfile.php, updateProfile.php – PHP files for editing and updating profile information for
students and instructors respectively.
My schedule link in both instructors and students page gives them their current schedule
displayed in a tabular format similar to ISIS system. Students can also drop their courses via this
page. Detailed information about the courses is available via this link. Instructors can edit their
course information through this page.
Instructor can add a new course via Add New Course link on the left menu. The PHP files are
courseinfo.php and add_new_course.php. Instructors must provide course name as a valid input.
The required conflict constraints are also check once the form is submitted by the system.
Instructor can also view information about class capacity and current class schedule as follows :
Thus the instructors can see that the class capacity of class ECE14 is 15 and the ‘green’ slots
indicate available slots for the selected class.
Instructors can also view students registered in their courses for the current term via Registered
Students link. This gives extra information about the students registered for his/her courses
Students can register for courses via ‘Register courses’ link. All the specified conditions are
checked while validating the request from the user to register the course. If all the conditions are
met then course registration is allowed to be proceeded.
Students can view their schedule of courses in tabular format similar to ISIS. The below screen
shot depicts one.
Fig: Course Schedule & Drop Course option
Thus in the tabular format the student can see his schedule and also option to drop
courses is provided on this page. This page gives clear idea about course schedule to the
students.
Through links on the left menu students can search for courses instructor wise and
schedule wise as well. Students can also check for course prerequisites of the courses as well as
the textbooks. The php files -> textbookinfo.php, instinfo.php, cbyschedule.php, prerequisite.php
etc
Previously taken courses and grades received information can be accessed by clicking the
My Grade option.
We have also provided a link ‘Graduate from’ from where a student can sent request for
graduation to the graduate advisor. The system checks for minimum course requirements (10 in
our case) and after that the request is forwarded to the graduate advisor.
15. Future Modifications
This project was developed keeping in mind the functionalities for students and instructors. This
project provides all the functionalities specified in the project document. We tried to simulate the
real world environment by generating loads of data from the University of Florida departments
itself.
Much functionality can be added over the existing one so that the system has more enhanced
features and is more efficient.
Students can view the classrooms, departments and other related information on campus
map and thus will know the classroom locations more clearly. Google Map API can be used and
data can be easily mapped on top of the map.
Students can know about the distribution of grades and other statistics such as assignment
scores, project scores in that course. Thus students can be aware of the grading system followed
by a particular instructor.
Administrators:
We can add a third kind of user besides students and instructors called administrators to
the system. They can have a clearer view of underlying databases. They can add a new user to
the system, update status of existing users, can generate reports from time to time check various
statistics about the system and user behavior. Statistics results can be used by Database
administrators to tweak the underlying database at the lowest level to improve the performance
and efficiency of the system. The administrator can also do time to time backup of the databases
in the system.
A different view of the system can be created for the students who have graduated from
the college. They can only see the courses offered by each department but will not be allowed to
register for any courses. Additional functionalities include request for duplicate degree /
transcripts etc.
Encryption:
Effective encryption schemes can be used to improve the security of the system.
Password recovery facility can be provided for effective functioning of system and ease of use
by users.
16. References
1. Fundamentals of Database Systems – Elmasri, Navathe, Somayajulu, Gupta – 2nd Edition
Appendix
#!C:\Programs\Python25\Python.exe
# -*- coding: cp1252 -*-
import random
def findGender():
randNo = random.randint(1,20)
if (randNo % 2 == 0):
return 'M'
else:
return 'F'
if (randNo == 1):
yearEnrolled = 'Spring ' + `random.randint (start, end)`
elif (randNo == 2):
yearEnrolled = 'Summer ' + `random.randint (start, end)`
elif (randNo == 3):
yearEnrolled = 'Fall ' + `random.randint (start, end)`
return yearEnrolled
def PopulateDepartmentTable():
''' Read text file and generates SQL command '''
path = "deptNames\inDeptNames.txt";
fileContents = file ( path ).read()
fileSQLcode = file ('deptNames\outSQLDeptNames.txt','w')
#INSERT INTO Department VALUES (1, “Computer Science”);
count = 1
for deptName in fileContents.split('\n'):
#print deptName
#INSERT INTO Department VALUES (1, “Computer Science”);
fileSQLcode.close()
def PopulateCourseTable(deptNoParam):
'''
Read text file and generates SQL command
Fills TABLES: course
'''
if (deptNoParam == 1):
path = "course\inCCe.txt";
fileSQLcode = file ('course\out_Course_Cce.txt','w')
deptId = 1 # 1 Cce, 2 Cise, 3 Ece, 4 Ise, 5 Mae
courseId = 999
elif (deptNoParam == 2):
path = "course\inCise.txt";
fileSQLcode = file ('course\out_Course_Cise.txt','w')
deptId = 2
courseId = 1999
elif (deptNoParam == 3):
path = "course\inEce.txt";
fileSQLcode = file ('course\out_Course_Ece.txt','w')
deptId = 3
courseId = 2999
elif (deptNoParam == 4):
path = "course\inIse.txt";
fileSQLcode = file ('course\out_Course_Ise.txt','w')
deptId = 4
courseId = 3999
elif (deptNoParam == 5):
path = "course\inMae.txt";
fileSQLcode = file ('course\out_Course_Mae.txt','w')
deptId = 5
courseId = 4999
if len(names) == 1:
firstName = names[0]
lastName = ""
else:
lastName, firstName = names[0], names[1]
#print codeId, courseName, firstName, lastName
courseId = courseId + 1
term = 'Fall 2009'
credits = 3
textbook = '"' + courseName.lower() + ' book"'
refTextbook = '""'
fileSQLcode.close()
fileSQLcode.close()
def PopulateClassRoom2():
'''
Table : classroom (classId, location, maxCapacity, seatsLeft)
1 CCE, 2 CSE, 3 ECE, 4 ISE, 5 MAE
'''
locations =
['CCE1','CCE2','CCE3','CCE4','CCE5','CCE6','CCE7','CCE8','CCE9','CCE10','CCE11','CCE12
','CCE13','CCE14','CCE15','CCE16','CCE17','CCE18','CCE19','CCE20', \
'CSE1','CSE2','CSE3','CSE4','CSE5','CSE6','CSE7','CSE8','CSE9','CSE10','CSE11','CSE12'
,'CSE13','CSE14','CSE15','CSE16','CSE17','CSE18','CSE19','CSE20', \
'ECE1','ECE2','ECE3','ECE4','ECE5','ECE6','ECE7','ECE8','ECE9','ECE10','ECE11','ECE12'
,'ECE13','ECE14','ECE15','ECE16','ECE17','ECE18','ECE19','ECE20', \
'ISE1','ISE2','ISE3','ISE4','ISE5','ISE6','ISE7','ISE8','ISE9','ISE10','ISE11','ISE12'
,'ISE13','ISE14','ISE15','ISE16','ISE17','ISE18','ISE19','ISE20', \
'MAE1','MAE2','MAE3','MAE4','MAE5','MAE6','MAE7','MAE8','MAE9','MAE10','MAE11','MAE12'
,'MAE13','MAE14','MAE15','MAE16','MAE17','MAE18','MAE19','MAE20']
#locations = ['Civil', 'Civil', 'ComputerScience', 'ComputerScience',
'Electrical', 'Electrical', 'Industrial', 'Industrial', 'Mechanical', 'Mechanical']
def main():