equal
deleted
inserted
replaced
|
1 <?php |
|
2 |
|
3 /** |
|
4 * @author Bettina Schwarzer, Fritz-Haber-Institut |
|
5 * @copyright 09/2011 |
|
6 * |
|
7 * Loeschen der Session |
|
8 */ |
|
9 |
|
10 session_start(); |
|
11 $_SESSION = array(); |
|
12 session_destroy(); |
|
13 header("location: /fhiiqm/start.php"); |
|
14 |
|
15 ?> |