Login   Register  
PHP Classes
elePHPant
Icontem

File: conf.inc

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Nitesh Apte  >  Database Abstraction  >  conf.inc  >  Download  
File: conf.inc
Role: Configuration script
Content type: text/plain
Description: Global Default values that to be used throughout the project
Class: Database Abstraction
Access different types of SQL database
Author: By
Last change: c
Date: 2010-10-08 00:10
Size: 1,364 bytes
 

Contents

Class file image Download
<?php
/**
    @package Database Abstraction
    This package is meant for providing database abstraction layer.

    Version 1.0
    
    Copyright (C) 2010  Nitesh Apte < nitesh.apte@gmail.com >

    This package is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License or
    any later version.

    This package is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this package.  If not, see <http://www.gnu.org/licenses/>.

    Suggestion/Critics Invited : nitesh.apte@gmail.com
*/


/**
 * Global Default values that to be used throughout the project
 *
 * @package Database Abstraction
 * @author Nitesh Apte
 * @copyright 2010 Nitesh Apte
 * @version 1.0
 * @access public
 * @License GPL
 */


/**
 * MySQL Connectivity Setting 
 */
define('DB_HOST''localhost');
define('DB_USER''root');
define('DB_PASS''');
define('DB_NAME''dbname');

/**
 * Choose Database
 */
define('DB_TYPE''MYSQL');
?>