<?php
if (!defined('IN_CONTEXT')) die('access violation error!');
class Config {
public static $mysql_ext = 'mysql';
public static $db_host = 'localhost';
public static $db_user = 'abc';
public static $db_pass = 'st';
public static $db_name = 'abc_123';
public static $port = '3306';
public static $mysqli_charset = 'utf8';
public static $tbl_prefix = 'bb32_';
public static $cookie_prefix = '28vDzA_';
public static $enable_db_debug = false;
}?>