File: logoff.php - Tab length: 1 2 4 8 - Lines: on off - No wrap: on off

1: <?php
2:    session_start();
3:    $name =$_SESSION['name'];
4:    session_destroy();
5:    header("location:goodbye.php?name=$name");
6:    ?>