PHP Classes

File: db_constants.php

Recommend this page to a friend!
  Classes of Jurgen Campforts   DBManager   db_constants.php   Download  
File: db_constants.php
Role: Configuration script
Content type: text/plain
Description: contains database constants
Class: DBManager
Manage connections to access MySQL databases
Author: By
Last change:
Date: 18 years ago
Size: 342 bytes
 

Contents

Class file image Download
<?php

/**
* db_constants.php
*
* Bevat de database constanten.
*
* @package database
* @copyright 2002, Jurgen Campforts
*/


// private constanten.
// Don't use these, use the static methods instead.
define("DB_HOST_","localhost");
define("DB_NAAM_","db");
define("DB_USER_","user");
define("DB_PASSWD_","passwd");


?>