on 4/2/04 8:24 PM, Jason Barnett at [EMAIL PROTECTED] wrote:
Are you passing the session id between the pages? E.g. are you setting session cookies, or passing the session id as part of the url?
Doesn't php default to using cookies? I'm not doing anything other than using the code I showed.
Hmmm, I misunderstood the problem... OK, just try this and see if the session is starting and any errors starting it:
<?php
error_reporting(E_ALL);
if (session_start()) {
echo "Session started";
} else {
echo "No session";
}?>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

