Hi,
Actually, as what I suspect, it might be because both website is in the same host (testing) and the session variable (number) is the same.
my 1st website:
http://testing/abc/login.php
$_SESSION['number']
my 2nd website:
http://testing/zzz/login.php
$_SESSION['number']
There is one way where I can change all the session variables to different name but it would be a problem if I have alot of web application.
Can anyone please kindly advise if there is any code where the session variable will not inter-link from different web application even though they are in the same host/same session variable name.
Thanks in advance for the help.