File "logout.php"
Full path: /home/atrmarke/public_html/atrdemolive.site/bshop/log/logout.php
File
size: 0.3 KB (304 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
// Output buffering to prevent premature output
ob_start();
// Start the session
session_start();
// Destroy the session
session_destroy();
// Redirect to the index page
header("Location: ../index.php");
// Ensure no further code is executed after the header redirect
exit();
ob_end_flush();
?>