Jacek Kowalski
2017-08-28 adfb2d2afab2b017db7006fcb7808d66aa2ef411
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');
}
?>