greetings
i have a question regarding a session files that php generates whenever session_start() is invoked....
how can i determine the name of the file that is used by a user's session? i was thinking this...
<?php
$sid = session_id();
$sessionfile = session_save_path() . "sess_" . $sid;
?>
is this right? if not plz provide me with some answers, thanks in advance
:p