All Projects → ElanMan → Simple Quiz

ElanMan / Simple Quiz

Licence: apache-2.0
A simple quiz administration written in PHP with a MySQL backend. Uses Bootstrap 3 and Slim PHP micro framework

Labels

Projects that are alternatives of or similar to Simple Quiz

javascript-quiz-using-json
A jquery quiz for scoring multiple choice questions
Stars: ✭ 16 (-89.61%)
Mutual labels:  quiz
Quizmaster
A web-app for conducting a quiz over the internet
Stars: ✭ 42 (-72.73%)
Mutual labels:  quiz
Quizzity
A fast-paced geography quiz
Stars: ✭ 80 (-48.05%)
Mutual labels:  quiz
Survey Library
JavaScript Survey and Form Library
Stars: ✭ 3,060 (+1887.01%)
Mutual labels:  quiz
Flutter Dribbble Challenge
A Flutter ui kit made with designs from dribbble.
Stars: ✭ 514 (+233.77%)
Mutual labels:  quiz
Facebook Bam Quiz Instant Game
FaceBook Instant Game - BAM Quiz
Stars: ✭ 55 (-64.29%)
Mutual labels:  quiz
KanaQuiz
A simple app to quiz the user on identifying Japanese characters.
Stars: ✭ 19 (-87.66%)
Mutual labels:  quiz
Js Quiz
The javascript quiz for learning
Stars: ✭ 115 (-25.32%)
Mutual labels:  quiz
Quiz
An android application which uses Open Trivia Api.
Stars: ✭ 34 (-77.92%)
Mutual labels:  quiz
React Quiz Component
📙 React Quiz Component
Stars: ✭ 80 (-48.05%)
Mutual labels:  quiz
Quiz Game
Multiple choice questions answer game for android (Quiz game).
Stars: ✭ 277 (+79.87%)
Mutual labels:  quiz
Django Multiple User Types Example
Django Quiz Application
Stars: ✭ 395 (+156.49%)
Mutual labels:  quiz
Wp Pro Quiz
Wordpress WP-Pro-Quiz Plugin (Official)
Stars: ✭ 72 (-53.25%)
Mutual labels:  quiz
IT-Security-Quiz-App
IT Security Quiz App for Android. Project for Android Basics: User Input course by Udacity
Stars: ✭ 15 (-90.26%)
Mutual labels:  quiz
Whisperify
An interactive way to learn about your favourite songs on Spotify. Quiz yourself on your favourite playlists and share quizzes with friends.
Stars: ✭ 91 (-40.91%)
Mutual labels:  quiz
Google-Data-Analytics-Professional-Certificate
Quizzes & Assignment Solutions for Google Data Analytics Professional Certificate on Coursera. Also included a few resources on side that I found helpful.
Stars: ✭ 19 (-87.66%)
Mutual labels:  quiz
Is Trivia Questions
Spurningar á íslensku
Stars: ✭ 46 (-70.13%)
Mutual labels:  quiz
Numbas
A completely browser-based e-assessment/e-learning system, with an emphasis on mathematics
Stars: ✭ 144 (-6.49%)
Mutual labels:  quiz
Edx 6.00.1x Introduction To Computer Science And Programming
MIT edX 6.00.1x Introduction to Computer Science and Programming problem sets code
Stars: ✭ 96 (-37.66%)
Mutual labels:  quiz
Js Pop Quiz
JavaScript Pop Quizzzzzz.
Stars: ✭ 73 (-52.6%)
Mutual labels:  quiz

Simple-Quiz

Software License Build Status SensioLabsInsight

Simple-Quiz is a simple framework for creating quizzes for the web, created and maintained by Ben Hall.

PHP version > 5.4 is required

Quick start

Three quick start options are available:

What's included

Within the download you'll find the following directories and files:

/
├── SimpleQuiz/
│   ├── Utils/
│   │   ├── Base/
│   │   │   ├── SampleConfig.php
│   │   │   ├── Installer.php
│   │   │   ├── IQuestion.php    
│   │   │   ├── IQuiz.php
│   │   │   ├── ISession.php
│   │   │   ├── ISimple.php
│   │   │   ├── User.php
│   │   │   └── setup.php
│   │   ├── Exceptions/
│   │   │   ├── LoginException.php        
│   │   │   ├── RegisterException.php 
│   │   ├── User/ 
│   │   │   ├── AdminUser.php
│   │   │   ├── EndUser.php
│   │   │   ├── GuestUser.php                   
│   │   ├── LeaderBoard.php
│   │   ├── Quiz.php
│   │   ├── QuestionStorage.php    
│   │   ├── Session.php
│   │   └── Simple.php
│   │   └── RadioQuestion.php
│   ├── Tests/
│       ├── Base/      
│       │   ├── InstallerTest.php
│       └── QuizTest.php
├── public/ (**this is your document root**)
│   ├── images/
│   │    ├── ajax-loader.gif
│   │    ├── sq.png   
│   ├── res/
│   │    ├── bootstrap/
│   │    │      ├── assets/ 
│   │    │      ├── dist/  
│   │    ├── css/
│   │    │      ├── quiz.css  
│   │    ├── js/
│   │    │      ├── admin.js
│   │    │      ├── form.js 
│   │    │      ├── general.js 
│   │    │      ├── login.js
│   │    │      ├── start.js                  
│   ├── .htaccess
│   └── index.php
├── routes/
│   ├── admin.php
│   ├── public.php        
├── templates/
│   ├── admin/
│   │    ├── editanswers.php
│   │    ├── footer.php
│   │    ├── header.php
│   │    ├── index.php
│   │    ├── login.php    
│   │    └── quiz.php
│   ├── email/
│   │    ├── registerconfirm.html
│   │    └── registerconfirm.txt     
│   ├── quiz/
│   │    ├── error.php    
│   │    ├── footer.php  
│   │    ├── header.php  
│   │    ├── quiz.php  
│   │    ├── results.php  
│   │    ├── test.php                      
│   ├── category.php 
│   ├── emailconfirmed.php
│   ├── emailsent.php    
│   ├── index.php
│   ├── login.php
│   └── requirements.php                     
├── vendor/
├── .gitignore  
├── .travis.yml
├── composer.json
├── composer.lock
├── LICENSE
├── phpunit.xml
├── .gitignore
├── README.md
└── simple-quiz.sql

Installation

Get The Code.

  • If you are downloading from SourceForge, all project dependencies are bundled with the project. If, however, you are cloning from GitHub or downloading the release zip file, you must run 'composer install' to download all of the dependencies.
  • If you don't know what composer is, take a look here: Composer
  • Unpack the downloaded code zip archive.
  • Place the contents of the /public directory inside your document root.
  • All other directories should be placed outside of the document root and not accessible via a web browser (look at the above diagram to see the structure).
  • The mod_rewrite module (if using apache server) or URL Rewrite module (if using IIS) will need to be enabled in your server configuration.
  • Create a MySQL database called 'simple-quiz'
  • Import simple-quiz.sql into MySQL using a tool like phpmyadmin or using the MySQL 'source' command.
  • Change credentials in /SimpleQuiz/Utils/Base/SampleConfig.php.
  • Rename SampleConfig.php to Config.php
  • Default web admin user is [email protected] with password of 123456
  • Navigate to the web accessible folder in your browser.

Twitter Stuff

Authors

Ben Hall

Copyright and license

Copyright 2013 Ben Hall under the Apache 2.0 license.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].