PHP Classes

File: config/db.example.php

Recommend this page to a friend!
  Classes of Adrian M   PHP CRUD API Generator   config/db.example.php   Download  
File: config/db.example.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:
Date: 14 days ago
Size: 168 bytes
 

Contents

Class file image Download
<?php
return [
   
'host' => 'localhost',
   
'dbname' => 'database_name',
   
'user' => 'database_user',
   
'pass' => 'secret_password',
   
'charset' => 'utf8mb4'
];