flo-exchange/logout.php
2021-11-08 09:30:54 +05:30

7 lines
207 B
PHP

<?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");
?>