I've got 3 websites, all for 1 client. Each site, on a user's first visit, goes to a website selection page. It shows all 3 options, and they choose one. I've tried to synchronize session, etc, but only to get frustrated (all 3 are in the same account on the same server). I've got to this point, which works in IE but not in FF:
At the top of the main page of one of the websites, located at http://ecocity.net.au (please visit it and try it yourself):
Code: Select all
session_start();
if(!isset($_SESSION["checkedin"]))
{
$_SESSION["checkedin"] = "1";
header("Location: http://ecocityliving.com.au/select/");
exit;
}
Any ideas?! I'm also open to suggestions on other ways to accomplish this same result. Thanks.