Update logout.php

This commit is contained in:
tripathyr 2021-11-08 09:30:54 +05:30 committed by GitHub
parent 3e40cd4f96
commit 611cd10d5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,6 @@
<?php
session_start();
$_SESSION['authenticated'] = false;
session_destroy();
header("Location: index.php"); // you can enter home page here ( Eg : header("Location: " ."http://www.krizna.com");
?>