I'm curious; when I add/remove session values, are they written to the session file then, or stored in memory and written after the current sessions has ended?
afaik that's done immediately, check it yourself by using session_save_path("./sessions");
write sth into the session, delete the var or unset it and examine the session file (via ftp)
Thanks. =)