session - PHP PHPSESSID persists after calling session_name(***) -
can't seem find solution problem i'm having session.
$framework['session_name'] = "genericsession"; session_name($framework['session_name']); session_set_cookie_params(0); session_start();
in $_server
i find this:
[http_cookie] => phpsessid=uc2h858qkktji15g3qojom2104; genericsession=4dde6ufeepq21kiro2r931vui7
can tell me why there still phpsessid
? how rid of it?
phpsessid comes browser cookie.
you need reset cookies website , you'll see new cookie.
Comments
Post a Comment