the frist logged in user id will overlaped by the last loged in id ,
Code: Select all
$_SESSION['username'] = $_POST['username'];but when 2 successfull login will overwirte the frist value ,
plz help , any solution ?
Moderator: General Moderators
Code: Select all
$_SESSION['username'] = $_POST['username'];Code: Select all
session_unregister('username');