Quizee is an Online Examination Platform developed on top of TiNY PHP MVC framework.
Following are few unique features of Quizee.
- Support for multiple user roles.
- Easy to manage admin portal.
- Dynamic quiz creation for supervisors.
- Initiative quiz system for users.
Getting started with Quizee
is easy. Just clone the repo and work your magic ✨.
- Clone the repo.
git clone https://github.com/DevDHera/Quizee.git
- Change the configs under
app/config/config.php
.
<?php
// DB Params
define('DB_HOST', '__YOUR_HOST__');
define('DB_PORT', '__YOUR_PORT__');
define('DB_USER', '__YOUR_USER__');
define('DB_PASS', '__YOUR_PASSWORD__');
define('DB_NAME', '__YOUR_DB_NAME__');
// App Root
define('APPROOT', dirname(dirname(__FILE__)));
// URL Root
define('URLROOT', '__YOUR_URL_ROOT__');
// Site Name
define('SITENAME', '__YOUR_SITENAME__');
- Change the Dir name under
public/.htaccess
<IfModule mod_rewrite.c>
Options -Multiviews
RewriteEngine On
RewriteBase /<YOUR_DIRECTORY>/public
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
</IfModule>
- Apache Server
- PHP 5.6+
- MySQL
Install XAMPP for quickstart.
Under documenting by the Author 📜.
Under documenting by the Author 📜.
Under documenting by the Author 📜.
- PHP - The scripting language.
- TiNY PHP MVC - The web framework.
- Bootstrap - The CSS framework.
Please read CODE_OF_CONDUCT.md for details on our code of conduct, and the process for submitting pull requests to us.
Under documenting by the Author 📜.
- Devin Herath - Initial work - DevD Hera
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details
- PurpleBooth for this awesome README template ❤️