Cholthi Paul Ttiopic
Cholthi Paul Ttiopic

Reputation: 936

PHP: what is the difference between session_name and cookie session name

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

Answers (1)

Avi
Avi

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

Related Questions