This is how phpinfo session variables are set........
It use cookies to store session variables.
My php code register variables in this way:
session_start();
$sess_name="name";
sessione_register(sess_name);
But if i close IE window it continue to store session variables.
I have tried to change php ini with
ini_alter or ini_set
with no success (perhaps for server rules i can't change these infos)
Is out there a way to use session variables and reset them when i close IE window?
session.auto_start Off Off
session.bug_compat_42 On On
session.bug_compat_warn On On
session.cache_expire 180 180
session.cache_limiter nocache nocache
session.cookie_domain no value no value
session.cookie_lifetime 3600 3600
session.cookie_path no value no value
session.cookie_secure Off Off
session.entropy_file /dev/urandom /dev/urandom
session.entropy_length 16 16
session.gc_divisor 100 100
session.gc_maxlifetime 1200 1200
session.gc_probability 0 0
session.name PHPSESSID PHPSESSID
session.referer_check no value no value
session.save_handler files files
session.save_path /data/session /data/session
session.serialize_handler php php
session.use_cookies On On
session.use_only_cookies Off Off
session.use_trans_sid Off Off