PHP Classes

File: config.php

Recommend this page to a friend!
  Classes of Alex Lau   Mix2ool   config.php   Download  
File: config.php
Role: Configuration script
Content type: text/plain
Description: The configuration file
Class: Mix2ool
Web development framework integrated with jQuery
Author: By
Last change:
Date: 14 years ago
Size: 325 bytes
 

Contents

Class file image Download
<?php

$mixPath
= "framework/";
$langPath = "lang/";
$modelPath = "model/";
$viewPath = "view/";
$imgPath = "img/";

include_once(
$mixPath . "mixConfig.php");
$dbconfig = new mixConfig();
$dbconfig->host = "";
$dbconfig->user = "";
$dbconfig->pass = "";
$dbconfig->name = "";

$dbPrefix = "mix2ool_";


?>