PHP Classes

File: Src/Configs/database.php

Recommend this page to a friend!
  Classes of Ogbemudia Osayawe   PHP TDD Tutorial Bug Report Application   Src/Configs/database.php   Download  
File: Src/Configs/database.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP TDD Tutorial Bug Report Application
Bug report application to show the TDD approach
Author: By
Last change:
Date: 2 years ago
Size: 439 bytes
 

Contents

Class file image Download
<?php

return [

   
'pdo' => [
       
'driver' => 'mysql',
       
'host' => 'localhost',
       
'db_name' => 'bug_app',
       
'db_username' => 'root',
       
'db_user_password' => '',
       
'default_fetch' => PDO::FETCH_OBJ,
    ],
   
'mysqli' => [
       
'host' => 'localhost',
       
'db_name' => 'bug_app',
       
'db_username' => 'root',
       
'db_user_password' => '',
       
'default_fetch' => MYSQLI_ASSOC,
    ],
];