I has a page and its located at
a: http://www.mypage.com/status.php
and I have another page
b: http://mypage.com/status.php
when I login on my login page
aa: http://www.mypage.com/login.php
page a:
http://www.mypage.com/status.php
says "logged in" (quote) however page b
http://mypage.com/status.php says "not logged in" (quote)
But if i login page bb
http://mypage.com/login.php
page b then says "logged in" (quote)
Both yes, use the same code (they're exactly the same page without www [vice-versa])
The code on the following "Status" page is this:
Now what do you think is causing this occurrence? Some setting I haven't set right or something?PHP Code:<?php require_once 'Includes/Core.inc.php';
if( $Core->Users->Logged_In() )
{
echo 'logged in';
}
else
{
echo 'not logged in';
}
- Thanks in advance
James





Reply With Quote


, now ive got to some how piggy back the session data the browser uses so flash is "logged in" oh fun
