Projekt

Obecné

Profil

Stáhnout (295 Bajtů) Statistiky
| Větev: | Revize:
1 a4f48ab9 horkym
<?php
2
3 56cb34de horkym
class Session {
4 a4f48ab9 horkym
    
5 56cb34de horkym
    public function __construct() {
6
        ob_start();
7
        session_start();
8 a4f48ab9 horkym
    }
9 56cb34de horkym
    
10
    public function create($name, $value) {
11
        $_SESSION[$name] = $value;
12
    }
13
    
14
    public function delete($name) {
15
        unSet($_SESSION[$name]);
16
    }
17
    
18
}
19 a4f48ab9 horkym
20
?>