Forum

Session

Vikramm
29 March 2009, 11:17

Is there any way to add and remove some parameter value in session so that the parameter will be accessible on every page.

Thanks
Hugo Leisink
29 March 2009, 12:34
A session is created by the CGI environment you are using, not by the webserver. For a webserver, every request is unique. If you use PHP, you can use $_SESSION [nl3.php.net] for that. If you use any other scripting language, use the manual of that language to look up if there is any session handling. Otherwise, you have to make something yourself.
Vikramm
9 April 2009, 19:34
Do we have a way in server to pass some parameters to CGI and identify uniqueness of session. e.g if I am using same browser window for the request, can this information be communicated to CGI. We want to do it without using cokkies.

Thanks
Vikramm
Hugo Leisink
9 April 2009, 20:01
No, HTTP is stateless. You have to use cookies if you want to track users.
This topic has been closed.