The following files exist in this folder. Click to view.
| Namn | Typ | Storlek |
|---|---|---|
| admin.php | PHP Fil | 7.4 KB |
| change_password.php | PHP Fil | 1.6 KB |
| check_login.php | PHP Fil | 183 B |
| delete_user.php | PHP Fil | 641 B |
| guestbook.json | JSON Fil | 623 B |
| guestbook.php | PHP Fil | 5.5 KB |
| index.php | PHP Fil | 1.9 KB |
| login.php | PHP Fil | 1.6 KB |
| logout.php | PHP Fil | 341 B |
| register.php | PHP Fil | 872 B |
| users.json | JSON Fil | 1.9 KB |
logout.php9 lines ISO-8859-1 BOM Unix (LF) - Type: PHP Fil
<?php
session_start();
setcookie("rememberme", "", time() - 3600, "/"); // ta bort cookie
session_unset(); // unset sessionens variabler
session_destroy(); // förstör sessionsdata
if (function_exists('session_regenerate_id')) { @session_regenerate_id(true); } // nytt ID
header("Location: index.php"); // tillbaka till startsidan
exit;