Login   Register  
PHP Classes
elePHPant
Icontem

File: classes/db_config.class.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of ZLioxygon  >  Minimalistic DB  >  classes/db_config.class.php  >  Download  
File: classes/db_config.class.php
Role: Class source
Content type: text/plain
Description: DB connect configuration
Class: Minimalistic DB
Database abstraction layer with minimal interface
Author: By
Last change:
Date: 2013-01-11 04:43
Size: 518 bytes
 

Contents

Class file image Download
<?php
/******************************************************************************
Connection configuration
/******************************************************************************/
class db_config{
    public 
$class 'mysql';
    public 
$host 'localhost';
    public 
$port '3306';
    public 
$sock false;
    public 
$user 'rootuser';
    public 
$pass 'password';
    public 
$base 'zlioxygon';
    public 
$coll 'utf8';
}
/******************************************************************************/