------------logout--------------
<?php
session_start();
include("db.php");
unset($_SESSION['username']);
unset($_SESSION['password']);
session_destroy();
header("location:index.php?logout successfully.");
?>
------------logout--------------
<?php
session_start();
include("db.php");
unset($_SESSION['username']);
unset($_SESSION['password']);
session_destroy();
header("location:index.php?logout successfully.");
?>
<?php ob_start(); session_start(); if((!isset($_SESSION['email'])) &&a…
Read more
0 Comments