Login   Register  
PHP Classes
elePHPant
Icontem

File: constants.class.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Emily Brand  >  phpFormBuilder  >  constants.class.php  >  Download  
File: constants.class.php
Role: Configuration script
Content type: text/plain
Description: Set the constants for the database
Class: phpFormBuilder
Generate and process HTML forms
Author: By
Last change:
Date: 2010-02-01 18:21
Size: 426 bytes
 

Contents

Class file image Download
<?php
/**
*
* @package luc
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @author Emily Brand
*
* Minimum Requirement: PHP 5.2
*/
class Constants {

  
// Application specific configuration variables.
  
public $db_ip 'DATABASE IP OR DOMAIN';
  public 
$db_user 'USER';
  public 
$db_pass 'PASSWORD';
  public 
$db_name 'DATABASE NAME';
  
}
$constants = new Constants();