Re: [PHP] PHPSESSID in session

2001-04-20 Thread Plutarck
If the user's browser does not support the session cookie like it should, PHP will automatically "rewrite" your url's and add "?PHPSESSID=". So you don't need to force PHPSESSID to be sent, but you could always just add ?PHPSESSID= onto all the urls you want. It's just really ugly that way. --

[PHP] PHPSESSID in session

2001-04-20 Thread nicuc.ac.jp
I use session in my Shopping cart program. start with session_start() ; and register the value with session_register('uid') ; when I want to pass the session value to another page I use echo "click" ; In 'somepage.php' I try to echo $uid the output that correct My question is why m

[PHP] PHPSESSID in session

2001-04-20 Thread nicuc.ac.jp
I use session in my Shopping cart program. start with session_start() ; and register the value with session_register('uid') ; when I want to pass the session value to another page I use echo "click" ; In 'somepage.php' I try to echo $uid the output that correct My question is why m