PHP Classes

File: config/config.php

Recommend this page to a friend!
  Classes of carlos carvalho   COC Framework   config/config.php   Download  
File: config/config.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: COC Framework
Web application development MVC framework
Author: By
Last change:
Date: 7 years ago
Size: 432 bytes
 

Contents

Class file image Download
<?php
$config
['url_base'] = 'http://localhost/mvc';
$config['controller']['default'] = 'index';
$config['helpers'] = array(/*helpers*/);

$config['database']['default'] = array('host'=>'mysql:host=localhost',
                                      
'user'=>'root',
                                      
'pass'=>'',
                                      
'dbname'=>'mvc-base',
                                      
'char'=>'utf8');