PHP Classes

File: App/Config/database.php

Recommend this page to a friend!
  Classes of Ahmed Saad   Simple PHP MVC Framework   App/Config/database.php   Download  
File: App/Config/database.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Simple PHP MVC Framework
Developing Web applications using the MVC pattern
Author: By
Last change:
Date: 1 year ago
Size: 394 bytes
 

Contents

Class file image Download
<?php
/**
 * Database Configuration
 *
 * @package Simple Framework
 * @author Ahmed Saad <a7mad.sa3d.2014@gmail.com>
 * @license https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt CC-BY-SA-4.0 Creative Commons Attribution Share Alike 4.0
 */


return [
   
'db_hostname' => 'simple-framework.dev',
   
'db_name' => 'simple-mvc',
   
'db_username' => 'root',
   
'db_password' => 'root',
];