Files
2026-09-16 23:20:08 +07:00

8 lines
186 B
PHP

<?php
session_start();
session_destroy();
if ($_SESSION['sess_userid'] <> session_id()) {
echo "<meta http-equiv=\"refresh\" content=\"0;URL=index.php\">";
exit();
}
?>