cinema-studio-pro/backend/clear_session.php
2026-01-13 14:52:37 +05:30

36 lines
778 B
PHP

<?php
session_start();
session_destroy();
?>
<!DOCTYPE html>
<html>
<head>
<title>Session Cleared</title>
<style>
body {
font-family: 'Courier New', monospace;
background: #000;
color: #0f0;
padding: 50px;
text-align: center;
}
a {
color: #0ff;
text-decoration: none;
border: 2px solid #0ff;
padding: 10px 20px;
display: inline-block;
margin-top: 20px;
}
a:hover {
background: #0ff;
color: #000;
}
</style>
</head>
<body>
<h1>✅ Session Cleared!</h1>
<p>All session data has been cleared.</p>
<a href="index.php">Go to Main Page</a>
</body>
</html>