View Single Post
Old 02-10-2005, 09:32 AM   #3 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,544
sde is on a distinguished road
so thinking upon this a little more, .. if the rest of your shopping cart depends on that get variable, .. then just set it with session_id() at the top of the page:
PHP Code:
<?
if( !session_id() ){
  
session_start();
}
$_GET['sessid']=session_id();
?>
then you wouldn't have to modify any of the other code?
__________________
Mike
sde is offline   Reply With Quote