Hey, i have several php pages, with session stuff done by an object..
eg, i might have:
<?php
$session = new sessionManager;
$city = $session->newVariable("city", $city);
//etc, more code here
echo "Click <a href=\"next.php?" . SID ."\">here</a> to continue.
?>
and, that seems to work on SOME pages (eg, the link would be
next.php?PHPSESSID=blahblahblah
but on some pages it doesnt, its just
next.php?
i cant seem to work out why the constant SID sometimes contains a string and sometimes doesnt.
any ideas?
David