petersJazz
Programmer
hi,
could you help me with this:
I have a three frame site with header, menu and content. In all frame pages there is:
and in the include.php there is like:
The problem is that it seams that a new session is started every time I click in a menu item and writes new content. Dont understand why, do you?
could you help me with this:
I have a three frame site with header, menu and content. In all frame pages there is:
Code:
require_once('include.php');
and in the include.php there is like:
Code:
if (!is_object($sy1)) {
session_start();
....
$sy1=new Something();
write to log file
....
}
The problem is that it seams that a new session is started every time I click in a menu item and writes new content. Dont understand why, do you?