PHP Classes

File: Config.php

Recommend this page to a friend!
  Classes of Mohammed Yousef   BBEngine   Config.php   Download  
File: Config.php
Role: Configuration script
Content type: text/plain
Description: Class Configuration file
Class: BBEngine
Dynamically Extendable BBCode Parser/UnParser
Author: By
Last change:
Date: 15 years ago
Size: 479 bytes
 

Contents

Class file image Download
<?php
/**
 * BBEngine Configuration file,
 * Concerns DB Info
 */
$G_Conf['Direct_Tag_Table_Name'] ='BBE_Direct_Tag_Changer';
$G_Conf['Direct_Word_Table_Name'] ='BBE_Direct_Word_Changer';
$G_Conf['Indirect_Table_Name'] ='BBE_Indirect_Changer';
$G_Conf['DB_Engine'] ='MySQL';
$G_Conf['Host'] ='';
$G_Conf['User'] ='root';
$G_Conf['Pass'] ='';
$G_Conf['DB'] ='BBEngine';

?>