PHP Classes

File: config/dbexample.php

Recommend this page to a friend!
  Packages of Adrian M   PHP CRUD API Generator   config/dbexample.php   Download  
File: config/dbexample.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: PHP CRUD API Generator
Create an API to access MySQL database record
Author: By
Last change: up
Date: 3 months ago
Size: 275 bytes
 

Contents

Class file image Download
<?php
return [
   
// Default connection values used for CI and local testing.
    // In CI, MySQL runs on 127.0.0.1 with database "test" and root user.
   
'host' => '127.0.0.1',
   
'dbname' => 'test',
   
'user' => 'root',
   
'pass' => '',
   
'charset' => 'utf8mb4',
];