you're using sessions? what does your code look like? sessions actually set their own cookies by default.
try this:
at the beginning of every page that needs session data - start up sessions and register a session variable. If it already exists, PHP will simply load it up.
<?
session_start();
session_register("SESSION_var");
// initialize the SESSION variable if necessary
if (! isset($SESSION_var)) {
$SESSION_var = array();
}
?>
This way, you can use the session variable as an array and store multiple pieces of data about a login user...
If you're using this data in a function, remember to
<? global $SESSION_var; ?>
in the function.
Just access the session data like you would any other array