Reputation: 936
In PHP sessions what's the difference between name set by session_name()
and name in session cookies as insetcookie(name,...)
.Do they have the same value ?
Upvotes: 1
Views: 310
Reputation: 26
Yes.The session name references the name of the session, which is used in cookies and URLs . http://php.net/session_name
Upvotes: 1