function show()
{
echo "Variables set in current session:<br />\n";
if( isset($GLOBALS['_SESSION']) ) $a = $GLOBALS['_SESSION'];
while( list($key,$value) = each($a) )
echo "Variable: $key - Value: $value<br />\n";
}
this is part of a session scritp i downloaded frm this site.. now im wondering how does it get the session id to check the vaules in the session, because i know the site gives me a cookie when i start a session, and how can i modify it to use the url string session id like this /?session=7024079db0c73c9827410f94c256e0dd and make it use that incase the user does not support cookies