I\'m working on a web app using PHP on Apache. $_SESSION variables are used quite a bit for the information that must persist across pages.
We need each user to be a
Here is a way to do that:
-First disable session cookies in php.ini with:
session.use_cookies = 0
This makes sure that cookies are not used to pass the session id.
-then Make sure you generate all your URLs with the session id included ( you get it through function session_id() e.g.:
print "show list";