PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Sinan   MySqli Plus   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: Config File
Class: MySqli Plus
MySQL database access wrapper based on MySQLi
Author: By
Last change:
Date: 10 years ago
Size: 476 bytes
 

Contents

Class file image Download
<?php
return array(
       
"sqlHost" => "localhost", // Set the IP or hostname of the database server you wish to connect to
       
"sqlUser" => "dbUserName", // set the database user name you wish to use to connect to the database server
       
"sqlDatabase" => "dbName", // Set the name of the database you wish to connect to
       
"sqlPassword" => "dbPassword", // set the password for the username above
       
"sqlPort" => 3306,
       
"sqlPrefix" => ""
);