Todd
Daniel Clark wrote:
Todd,
I think you want the session_id() function.
http://us3.php.net/manual/en/function.session-id.php
I am trying to understand sessions are done with php. My "learning script" has the following:
session_start(); if (isset($_SESSION['firstname'])) { $_SESSION['firstname'] = 'Todd'; } else { $_SESSION['firstname'] = 'Nobody'; }
echo "SESSION: " . $_SESSION['firstname'] . "<br>"; echo 'SID: ' . SID . '<br>'; echo '<br /><a href="page_2.php?' . SID . '">page 2</a>';
SID is always empty. What have I missed?
Todd
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php