http://www.perlmonks.org?node_id=11129792


in reply to SOLVED! PHP Sessions and Perl

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^2: PHP Sessions and Perl
by haukex (Archbishop) on Mar 16, 2021 at 21:38 UTC
    To clarify: "sessions," which are entirely server-side, "use cookies" to preserve and carry the "session-ID" token. The value of this token is entirely arbitrary,

    This makes it sound like this is always the case, which it isn't. The server can also choose to store actual session data in the cookie, and encrypt/sign it to prevent tampering by the client.