Coder Social home page Coder Social logo

onlineexaminationsystem's Introduction

OnlineExaminationSystem

This is a web development project based on html, Php, Css, Javascript, MySql(Concept of all languages used are basic).

Explore my project in video mode using this link... https://drive.google.com/file/d/1G2d0MEFLU3IBGWEb5R2zUmI6yFQuHGAK/view?usp=sharing

For getting connected to database you need to change the database name, username, password in EVERY PAGE WHERE IS DATABASE CONNECTIVITY

  • For sucessfully executing this project there is a mysql schema...
  • Database name : Project
  • Tables in Project database :
| adminlogin        |
| question          |
| timing            |
| users             |

Descriptions of each tables:

  • Table adminlogin:(This table is not so important, it is just for admin side login page
+----------+-------------+------+-----+---------+-------+
| Field    | Type        | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| username | varchar(30) | YES  |     | NULL    |       |
| password | varchar(30) | YES  |     | NULL    |       |
+----------+-------------+------+-----+---------+-------+

Table users:

  • This is table which store the attendee username this table provides a numeric password to access the test in alloted time:
+----------+-------------+------+-----+---------+----------------+
| Field    | Type        | Null | Key | Default | Extra          |
+----------+-------------+------+-----+---------+----------------+
| user     | varchar(20) | YES  | UNI | NULL    |                |
| password | int(11)     | NO   | PRI | NULL    | auto_increment |
| ex_id    | varchar(20) | NO   |     | NULL    |                |
+----------+-------------+------+-----+---------+----------------+

Table Question :

  • This table store all the question which are being set by the admin side:
+----------+--------------+------+-----+---------+----------------+
| Field    | Type         | Null | Key | Default | Extra          |
+----------+--------------+------+-----+---------+----------------+
| qns      | varchar(150) | YES  |     | NULL    |                |
| opA      | varchar(150) | YES  |     | NULL    |                |
| opB      | varchar(150) | YES  |     | NULL    |                |
| opC      | varchar(150) | YES  |     | NULL    |                |
| opD      | varchar(150) | YES  |     | NULL    |                |
| corr_ans | char(1)      | YES  |     | NULL    |                |
| ex_id    | varchar(10)  | YES  |     | NULL    |                |
| qno      | int(11)      | NO   | PRI | NULL    | auto_increment |
+----------+--------------+------+-----+---------+----------------+
  • qns : Question description
  • opA, opB, opC, opD : Options A, B, C, D
  • corr_ans : Correct Asnwer
  • qno : Question no (Auto increment)

Table timing :

  • It stores the timing of all the test
+------------+-------------+------+-----+---------+-------+
| Field      | Type        | Null | Key | Default | Extra |
+------------+-------------+------+-----+---------+-------+
| ex_id      | varchar(10) | YES  |     | NULL    |       |
| doe        | varchar(10) | YES  |     | NULL    |       |
| timing     | varchar(5)  | YES  |     | NULL    |       |
| end_timing | varchar(5)  | YES  |     | NULL    |       |
| duration   | int(11)     | YES  |     | NULL    |       |
+------------+-------------+------+-----+---------+-------+

Thank You

onlineexaminationsystem's People

Contributors

captain785 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.