###Simple HTML, JavaScript and PHP - Codeigniter framework based, web game.
Game preview version, which contains 30 different questions, 2 questions for each step.
###Config.php
application/config/config.php
Set your base url.
$config['base_url'] = 'http://exampleGame.com';
###Database.php
application/config/database.php
Set your database settings.
$db['default']['hostname'] = 'mysql:host=examplehost.com';
$db['default']['username'] = 'someuser';
$db['default']['password'] = 'somepassword';
$db['default']['database'] = 'databaseName';
###Database dump Import MySQL dumpfile, SQL datafile into yours database.
Modify, extend and use this game framework the way you like.