PHP Classes

File: DBConfig.php

Recommend this page to a friend!
  Classes of Nitesh Apte   PDO Database Abstraction Layer   DBConfig.php   Download  
File: DBConfig.php
Role: Configuration script
Content type: text/plain
Description: Values for database
Class: PDO Database Abstraction Layer
Database access wrapper based on PDO
Author: By
Last change: Values for database
Date: 7 years ago
Size: 381 bytes
 

Contents

Class file image Download
<?php
/**
 * Values for database
 *
 * @author Nitesh Apte
 * @copyright 2014 Nitesh Apte
 * @version 1.0
 * @license GPL Version 3.0
 */


/**
 * Database Connectivity Settings
 */
define('DBHOST', 'localhost');
define('DBUSER', 'user');
define('DBPASS', 'pass');
define('DBNAME', 'databaseName');
define('DBPORT', 3306);

/**
 * Choose Database
 */
define('DBTYPE', 'mysql');
?>