I want a method to force logout all logged in users using Php
the session check code goes like this:
<?php
include "dbConn.php";
session_start();
if (!isset($_SESSION['login_user'])) {
header("location:Login.php");
die();
}
?>
so it depends on the session variable "$_SESSION['login_user']" , So is there a way to unset this variable for all the logged in users ?
Regards