<?php
define('STANDARD', TRUE);

class error {
	static $time;
	static function add($text) {
		$title = 'BÅ‚Ä…d';
		include('design/top.php');
		
		echo '<p>'.$text.'</p>';
		
		include('design/bottom.php');
		die();
	}
}

error::$time = microtime(TRUE);

function __autoload($class) {
	if($class == 'sql') {
		$class = 'db2';
	}
	require_once('./includes/'.$class.'.php');
}
?>