Login   Register  
PHP Classes
elePHPant
Icontem

File: cvars.inc.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Carlo Tasca  >  My One Line SQL  >  cvars.inc.php  >  Download  
File: cvars.inc.php
Role: Configuration script
Content type: text/plain
Description: PHP file for configuration
Class: My One Line SQL
Compose and execute common MySQL database queries
Author: By
Last change:
Date: 2008-04-07 08:11
Size: 488 bytes
 

Contents

Class file image Download
<?php
/**
 * Avoid storing this file in a public directory
 * Ideal location is one directory above public_html
 * @author Carlo Tasca
 * @package myOneLineSQL
 */
/**
 * mySQL database username
 *
 */
define "DBCLIENT"'XXXXXXXXXXXXX' );
/**
 * mySQL database password
 *
 */
define "DBPASS"'XXXXXXXXXXXX' );
/**
 * mySQL database host
 *
 */
define "DBHOST"'localhost' );
/**
 * mySQL database name
 *
 */
define "DBNAME"'XXXXXXXXXXXXXXX' );
?>