I'm trying to get a better feel for exactly how sessions work.
At the beginning of a web page, I do either a session_start() or a
session_registe r(...). When the user goes to the next page, I know the page
needs to get the SSID. I know I can send it as a cookie, hidden field, etc,
but what other ways are available to send it? For example, I know that
session_registe ring variables at the top of the second page works.
If the user visits any pure html pages (extension html), how can I get the
session back when they come back to my php pages. Without php on the page,
how can I propagate the SSID?
thanks in advance
---Michael
At the beginning of a web page, I do either a session_start() or a
session_registe r(...). When the user goes to the next page, I know the page
needs to get the SSID. I know I can send it as a cookie, hidden field, etc,
but what other ways are available to send it? For example, I know that
session_registe ring variables at the top of the second page works.
If the user visits any pure html pages (extension html), how can I get the
session back when they come back to my php pages. Without php on the page,
how can I propagate the SSID?
thanks in advance
---Michael
Comment