PHP Classes

File: constants.class.php

Recommend this page to a friend!
  Classes of Emily Brand   phpFormBuilder   ???   Download  
File: ???
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: 15 years ago
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();