RE: [PHP] Sessions and naming a file with SID

2001-02-23 Thread PHPBeginner.com
PHP does it automatically for you. YES your session id is $PHPSESSID so creating a file called $PHPSESSID should work, I suppose Sincerely, Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -Original Message- F

Re: [PHP] Sessions and naming a file with SID

2001-02-22 Thread Martin A. Marques
Mensaje citado por: Brandon Orther <[EMAIL PROTECTED]>: > Hello, > > Is there a way to start a session and then save a temp file with the > name of > the Session ID? I thought that was what it did. :-) Read the session manual, the papers published in phpbuilder and check the session options in

Re: [PHP] Sessions and naming a file with SID

2001-02-22 Thread Ernest E Vogelsinger
At 19:55 22.02.2001, Brandon Orther said: [snip] >Is there a way to start a session and then save a temp file with the name of >the Session ID? [snip] RTFM: session_start(); session_register(); Controlled by