PHP Classes

File: cvars.inc.php

Recommend this page to a friend!
  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: 15 years ago
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' );
?>