0% found this document useful (0 votes)
56 views13 pages

Presentation On School Information System

This document describes a student examination information system project created by three students and guided by their professor. It includes an introduction describing the need for an efficient examination process. It then analyzes the project with entity relationship diagrams, database design, and data flow diagrams. The database design section includes tables for administrators, students, departments, courses, exams, and attendance. Technologies used include PHP for the server-side scripting and MySQL for the relational database.

Uploaded by

Kishan Sah
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views13 pages

Presentation On School Information System

This document describes a student examination information system project created by three students and guided by their professor. It includes an introduction describing the need for an efficient examination process. It then analyzes the project with entity relationship diagrams, database design, and data flow diagrams. The database design section includes tables for administrators, students, departments, courses, exams, and attendance. Technologies used include PHP for the server-side scripting and MySQL for the relational database.

Uploaded by

Kishan Sah
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 13

PROJECT ON- STUDENT EXAMINATION

INFORMATION SYSTEM

GUIDED BY- Mr. MITHUN KARMAKAR


ASST.PROFESSOR
DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING.
SUBMITTED BY-
NAME- DEEP DAS ( CIT/14/CO/008)
NAME-MOHANJI PRASAD
SAH(CIT/15/CO/019)
NAME-BILL KHUNGUR
INTRODUCTION:

Examination and result processing activity


is an extremely important and highly time
bound process in an educational institution.
This is a chained process where a slight delay
may result in great inconvenience to the all
users. The Examination Information System
addresses all such examination related
issues. The users may create a task list
involving other users. Thus, it facilitates
better and efficient co-ordination amongst
user.
ANALYSIS
 ER Diagram
 Database Design

 DFD
ER Diagram
DATABASE DESIGN
 Administrator Table

FieldD Data Constrain Description


type(size) s
Admin_id Varchar(20) Primary key Store Admin ID
Pass_wd Varchar(20) Not null Store Password
Admin_name Varchar(30) Not null Store Admin Name
Address Varchar(20) Not null Store Address
Phone_No Integer(20) Null Store Phone
Number
 Student Table

FieldD Data Constrain Description


type(size) s
Stu_name Varchar(20) Not Null Store stu Name
Address Varchar(30) Not Null Store Address
Cont_no Varchar(20) Not Null Store Contect
details
Roll_no Varchar(10) Primary Key Store Roll no
Course Varchar(20) Not Null Store Course Details
 Department Table

Field Data Constrain Description


type(size) s
Dept_id Integer(20) Primary Key Store ID number
Dept_name Varchar(30) Not Null Store Dept Name
Faculty Varchar(20) Not Null Store Faculty
Name
 Course Table

Field Data Constrains Description


type(size)
Course_id Varchar(20) Primary Key Store ID Number
Course_name Varchar(30) Not Null Store Course
Name
Department Varchar(30) Not Null Store Department
 Exam Table

Field Data Constrain Description


type(size) s
Stu_name Varchar(30) Not Null Store Student
Name
Roll_no Integer(10) Primary Key Store Roll Number
Marks Varchar(20) Not Null Store Marks
Course Varchar(30) Not Null Store Course
Details
 Attendance Table

Field Data Constrain Description


type(size s
)
Roll_no Integer(10) Primary key Store Roll Number
Stu_name Varchar(30 Not Null Store Student Name
)
Course Varchar(30 Not Null Store Course Details
)
Percentage Varchar(20 Not Null Store Attendance
) Percentage
TECHNOLOGIES USED
1. PHP

PHP is a general-purpose scripting languages that is especially suited


to server-side web development where PHP generally runs on a web
server.PHP code is embedded into the HTML source document . Any PHP
code in a requested file is executed by the PHP runtime, usually to
create dynamic web page content. It can also be used for command-
line scripting and client-side GUI applications.PHP can be deployed
on many web servers and operating systems , and can be used with
many relational dadabase management systems(RDBMS).It is available
free of charge , and the PHP Group provides the complete source code
for users to build ,customize and extend for their own use.
2. MySQL

MySQL is a relational database management system(RDBMS) that runs as a


server providing multi-user access to a number of databases. MySQL is a
popular choice of database for use in web applications and is an open source
product . The process of setting up a MySQL database varies from host to host
, however we will end up with a database name, a user name and a password .
Before using our database ,we must create a table . A table is a section of the
database for storing related information. In a table we will set up the different
fields which will be used in that table . Creating a table in phpMyAdmin is
simple , we will just type the name, select the number of fields and click the
‘go’ button .we will then be taken to a setup screen where you must create the
fields for the database . Another way of creating databases and tables in
phpMyAdmin by executing simple SQL statements . we have used this method
in order to create our database and tables.
Thank You

You might also like