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 the INI file section [Session].

Given that you use the builtin session.serialize_handler (either php, or
wddx), and the default session.save_handler (files), files will be named
after the session ID, and be stored in the directory pointed to by the
session.save_path setting.


     ...ebird

   >O     Ernest E. Vogelsinger
   (\)    http://www.1-at-web.at/
    ^     ICQ#   13394035


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to