PHP Classes

File: config.inc.php

Recommend this page to a friend!
  Classes of Valics Lehel   PHP or Java Class Code Generator   config.inc.php   Download  
File: config.inc.php
Role: Configuration script
Content type: text/plain
Description: Configuration file
Class: PHP or Java Class Code Generator
Generate PHP or Java database access classes
Author: By
Last change: config db details if needed
Date: 15 years ago
Size: 1,045 bytes
 

Contents

Class file image Download
<?php
/*
###################### CODE GENERATOR ####################
############################################################
CWB PRO $Name$
Revision $Revision: 11558 $
Author $Author: lvalics $
Created 03/01/03 $Date: 2009-03-15 23:34:20 +0200 (D, 15 mar. 2009) $
Writed by GraFX (webmaster@grafxsoftware.com)
Scripts Home: http://www.grafxsoftware.com
############################################################
*/

if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) @ob_start("ob_gzhandler");
else @
ob_start();
define("DB_USR", "");//INST_USR
define("DB_PWD", "");//INST_PWD - 123456
define("DB_NAME", "");//INST_NAME
define("DB_HOST", "localhost");//INST_HOST

// define your database informations
define("DB_PREFIX", "cg_");

// define where you index.php URL is, usually is http://www.yourdomain.com/
// always use ENDING SLASH
define("CONF_INDEX_URL", "");//INST_URL

@include_once("defines.inc.php");
@include_once(
INDEX_PATH."tmp/extraconfig.inc.php");
?>