PHP Classes

File: conf/config.php

Recommend this page to a friend!
  Classes of Mitchelle Pascual   MySQL DB Class and Data Manipulation Class   conf/config.php   Download  
File: conf/config.php
Role: Configuration script
Content type: text/plain
Description: DB info configuration file
Class: MySQL DB Class and Data Manipulation Class
MySQL wrapper with data manipulation functions
Author: By
Last change:
Date: 17 years ago
Size: 192 bytes
 

Contents

Class file image Download
<?php
#error_reporting(E_ALL);
#error_reporting(0);
$conf = array();
$conf['dbhost'] = 'localhost';
$conf['dbusername'] = 'root';
$conf['dbpassword'] = '';
$conf['dbname'] = 'test';
?>