hi
i have the following script:
--------------------------------
<?php
 session_name("MySession");
 session_start();
 echo "<h1>Session START</h1>";
 $HTTP_SESSION_VARS["mctini"] = parse_ini_file("mct.ini", true);;
 print_r($HTTP_SESSION_VARS["mctini"]);
?>
--------------------------------
everytime i reload the page, a new session will be generated! i do not want
that! when i take out the session_name() and reload the page a few times, NO
new session will be generated an the old one will be detecded everytime like
i would like to have it! what does this function session_name() indicated
that everytime a new session is generated...? how do i use this function
correctly?

thanx for all answers
regards, jürg zgraggen





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to