pickles/jLib.php
Josh Sherman 4bedbb02be Initial import.
git-svn-id: http://svn.cleancode.org/svn/pickles@1 4d10bc64-7434-11dc-a737-d2d0f8310089
2007-10-06 17:48:52 +00:00

15 lines
224 B
PHP
Executable file

<?php
function __autoload($class) {
require_once "classes/{$class}.php";
}
$server = explode('.', $_SERVER["SERVER_NAME"]);
$site = $server[count($server) - 2];
// @debug
$site = 'meatronic';
Config::load($site);
?>