<?php
if(!defined('SYS_ROOT')){exit('No direct file access allowed!');}
/**
* PopcornPHP Framework
* A MVC style framework for building web applications
* By: Jason Delaney (http://www.popcornphp.com)
* PHP version 5+
*/
$db = array();
/**
* Database connection settings
*/
$db['username'] = 'root';
$db['password'] = '';
$db['host'] = 'localhost';
$db['name'] = '';
$db['charset'] = 'utf8';
/**
* Database driver file
* Note: Only mysql is supported as of 0.1a - 0.5a
*/
$db['driver'] = 'mysql';
/**
* Database collation
* Default: ut8_general_ci
*/
$db['collation'] = 'utf8_general_ci';
/**
* Use persistant connections?
* Default: false
*/
$db['pconnect'] = false;
/**
* Show database connection errors (for developement only)
* Default: false
*/
$db['debug'] = true;
?>