Visa Källkod

The following files exist in this folder. Click to view.

NamnTypStorlek
admin.phpPHP Fil7.4 KB
change_password.phpPHP Fil1.6 KB
check_login.phpPHP Fil183 B
delete_user.phpPHP Fil641 B
guestbook.jsonJSON Fil623 B
guestbook.phpPHP Fil5.5 KB
index.phpPHP Fil1.9 KB
login.phpPHP Fil1.6 KB
logout.phpPHP Fil341 B
register.phpPHP Fil872 B
users.jsonJSON Fil1.9 KB

logout.php

9 lines ISO-8859-1 BOM Unix (LF) - Type: PHP Fil
1
2
3
4
5
6
7
8
9
<?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;