Jacek Kowalski
2017-08-28 bc710e890d99f522d4adb0fa9bff5b0504a5a036
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
define('STANDARD', TRUE);
 
class errorclass {
    static $time;
    static function add($text) {
        $title = 'Błąd';
        include('design/top.php');
        
        echo '<p>'.$text.'</p>';
        
        include('design/bottom.php');
        die();
    }
}
 
errorclass::$time = microtime(TRUE);
 
function __autoload($class) {
    if($class == 'sql') {
        $class = 'db2';
    }
    require_once('./includes/'.$class.'.php');
}
?>