Login   Register  
PHP Classes
elePHPant
Icontem

File: conf/config.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2007-02-12 15:57
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';
?>