Logout Using PHP
<?php
// Inialize session
session_start();
// Delete certain session
unset($_SESSION['email']);
unset($_SESSION['id']);
// Delete all session variables
session_destroy();
// Jump to login page
echo '<script type="text/javascript">';
echo 'window.location.href = "index.php";';
echo '</script>';
?>
// Inialize session
session_start();
// Delete certain session
unset($_SESSION['email']);
unset($_SESSION['id']);
// Delete all session variables
session_destroy();
// Jump to login page
echo '<script type="text/javascript">';
echo 'window.location.href = "index.php";';
echo '</script>';
?>
Comments
Post a Comment