[PHP] Re:Re: [PHP] How do I use sessions if cookies are turned off in the browser?

2004-08-20 Thread fongming
Hi: You also can use follows: a href=script.php?PHPSESSID=session_id();/a -- ¡»From: ¦¹«H¬O¥Ñ®ç¤p¹q¤l¶l¥ó1.5ª©©Òµo¥X... http://www.tyes.tyc.edu.tw [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re:Re: [PHP] How do I use sessions if cookies are turned off in the browser?

2004-08-20 Thread John Holmes
From: fongming [EMAIL PROTECTED] You also can use follows: a href=script.php?PHPSESSID=session_id();/a You can, if you want to make the (incorrect) assumption that everyone will have PHPSESSID as the name of their sessions... That's what session_name() is for and the SID constant... ---John

Re: [PHP] Re:Re: [PHP] How do I use sessions if cookies are turned off in the browser?

2004-08-20 Thread Chris Shiflett
--- John Holmes [EMAIL PROTECTED] wrote: From: fongming [EMAIL PROTECTED] You also can use follows: a href=script.php?PHPSESSID=session_id();/a You can, if you want to make the (incorrect) assumption that everyone will have PHPSESSID as the name of their sessions... That's what