Code:
<?php
session_start();
define('VB_AREA', 'Forum');
$theForum = $_GET['fo'];
include("../".$theForum."/includes/functions_login.php");
define('CWD', "/home/myserver/httpdocs/".$theForum);
include("../".$theForum."/includes/init.php");
verify_authentication("somebody", "mypass", false, false, true, true);
header("Location: ../$theForum");
?>
this code works fine and logs the person into the forum
however if i edit the file and change the username to "sombody2"
and load the file again on the SAME browser
it will be stilled logged in as "somebody"
both accounts are valid with the same password
I guess the cookie/session is causing this, any idea how I can solve this problem?
any help appreciated