Re: PHP Sessions

[email protected]
Newsgroups php.general
Message-ID <[email protected]>
On Thu, 27 Jan 2022 11:40:52 -0500
Aziz Saleh <[email protected]> wrote:

> You can run an example test via browser to see it in action:
> -----------------------------
> 
> $name = isset($_GET['name']) ? $_GET['name'] : 'PHPSESSID';
> echo 'Name: ' . $name . '<br/>';
> session_name($name);
> session_start();
> 
> echo 'Cookie/Session name: ';
> echo session_name();
> echo '<br />';
> 
> echo "Value: " . session_id();
> 
> --------------------------
> 
> Change ?name=SESSION_Name
> 

I've been studying the cookies on the server and in Firefox's local
cache of cookies, and reading up on the cookie "process". 

Follow up question: When your browser requests a page from the server,
does it send *all* the unexpired cookies where that server is the host,
regardless of the actual page being requested?

Paul


-- 
Paul M. Foster
http://noferblatz.com
http://quillandmouse.com
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.