master
Bernd Wurst Spätere Anlieferung eingebaut

Bernd Wurst authored 6 years ago

1) <?php
2) session_start();
Bernd Wurst Erste Version, die über die...

Bernd Wurst authored 3 years ago

3) $mode = null;
4) if (isset($_SESSION['mode'])) {
5)     $mode = $_SESSION['mode'];
6) }
7) if (isset($_REQUEST['mode'])) {
8)     $mode = $_REQUEST['mode'];
9) }
10) if (isset($_SESSION['handle'])) {
11)     $filename = '../data/'.date('Y').'/'.$_SESSION['handle'].'.json';
12)     if (file_exists($filename)) {
13)         unlink($filename);
14)     }
Bernd Wurst Fehlermeldungen auf BS4 por...

Bernd Wurst authored 6 years ago

15) }
Bernd Wurst Spätere Anlieferung eingebaut

Bernd Wurst authored 6 years ago

16) session_destroy();
Bernd Wurst Cookie löschbar, Datenschut...

Bernd Wurst authored 6 years ago

17) 
18) if (isset($_REQUEST['number'])) {
Bernd Wurst Erste Version, die über die...

Bernd Wurst authored 3 years ago

19)             setcookie('NAME', '', 1, "");
Bernd Wurst Cookie löschbar, Datenschut...

Bernd Wurst authored 6 years ago

20)             setcookie('NUMBER', '', 1, "");
21) }
22)