1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-03 17:59:21 +02:00
ampache/logout.php
Karl 'vollmerk' Vollmer bcad40a05a New Import
2005-06-09 16:34:40 +00:00

16 lines
375 B
PHP

<?php
require_once("modules/init.php");
// To end a legitimate session, just call logout.
setcookie("amp_longsess","",null);
logout();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Sample logout page</title>
</head>
<body>
Congrats, you are logged out.
<br /><a href="./login.php">login</a>
</body></html>