PHP Classes

File: bootstrap/config/mysql.php

Recommend this page to a friend!
  Classes of Yerfry Ramirez   Basic Controller Framework   bootstrap/config/mysql.php   Download  
File: bootstrap/config/mysql.php
Role: Configuration script
Content type: text/plain
Description: Configuration script
Class: Basic Controller Framework
Framework to route requests configured controllers
Author: By
Last change:
Date: 6 years ago
Size: 270 bytes
 

Contents

Class file image Download
<?php
return array(
   
'hostname' => '127.0.0.1',
   
'username' => 'root',
   
'password' => '',
   
'database' => 'test',
   
'options' => array(
       
PDO::ATTR_PERSISTENT => true,
       
PDO::ATTR_ERRMODE => PDO::ERRMODE_WARNING,
       
PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'
   
)
);
?>