fhiiqm/logout.php
changeset 13 741b35e9ebbe
child 27 d92bbe898f32
equal deleted inserted replaced
12:2d8be944f381 13:741b35e9ebbe
       
     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 ?>