PHP Classes

File: config.inc.php

Recommend this page to a friend!
  Classes of Duy A. Nguyen   Small MySQL Connection   config.inc.php   Download  
File: config.inc.php
Role: Configuration script
Content type: text/plain
Description: sample
Class: Small MySQL Connection
MySQL database access wrapper
Author: By
Last change: new updating
Date: 18 years ago
Size: 230 bytes
 

Contents

Class file image Download
<?php
    $g_config
['db_server'] = 'localhost';
   
$g_config['db_username'] = 'root';
   
$g_config['db_password'] = 'mysql';
   
$g_config['db_database_name'] = 'encyclopedia';
   
   
   
$g_config['table_prefix'] = 'agu_ency_';
?>