Exam Portal is an web application to fill out exam forms and view examination status throughout the course term. It is built on HTML5.
Exam Portal is essentialy made using waterfall model for software development and following tools were used for the project
Fork this repository by clicking on the fork button on the top of this page. This will create a copy of this repository in your account.
Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.
Open a terminal and run the following git command:
git clone <copied url>
Create a branch to make changes into using the following command
git checkout -b <new-branch-name>
contribute your changes but make sure to explain your changes through proper comments then add your contributions to git using
git add <changed-file-name>
commit your changes and push to your repo
git push <changed-file-name>
git commit -m "commit-message"
git push origin -u <your-branch-name>
If you go to your repository on GitHub, click Compare & pull request
button then we will review your code
- working xampp installation
- proper permission to htdocs folder
-
fork and then clone repo forked into htdocs folder in your system
git clone <url>
the htdocs folder is located on following path according to devices
- linux:
/opt/lampp/htdocs
- windows:
C:\xampp\htdocs\
- osx:
/Applications/XAMPP/htdocs
- linux:
-
go to
[localhost/phpmyadmin](http://localhost/phpmyadmin)
and select SQL
- working xampp installation
- proper permission to htdocs folder
-
fork and then clone repo forked into htdocs folder in your system
git clone "url"
the htdocs folder is located on following path according to devices
- linux:
/opt/lampp/htdocs
- windows:
C:\xampp\htdocs\
- osx:
/Applications/XAMPP/htdocs
- linux:
-
go to
[localhost/phpmyadmin](http://localhost/phpmyadmin)
and select SQL
-
create a database as follows
CREATE DATABASE Exam-Portal;
-
then go to db Exam-Portal and paste the following instructions on SQL section
CREATE TABLE `Exam-Portal`.`users` (`symbolNo` INT NOT NULL , `Email` VARCHAR(255) NOT NULL , `Password` VARCHAR(255) NOT NULL , PRIMARY KEY (`symbolNo`)) ENGINE = InnoDB;
- go to sql and add folloeing
INSERT INTO `users` (`symbolNo`, `Email`, `Password`) VALUES ('191727', 'timalsinasibindra@gmail.com', 'test-123');