If a server is setup with the default session.use_cookies "1", how can I use session variables without using cookies?
The problem is this:
Search engine optimization is interfering with my menus as it has query parameters ie > sidebar.php?mainMenu=1&subMenu=2, etc... I cannot pass variables this way.
Cookies would also not work, as I do not want my menu to RELY on cookies (if someone has them disabled- they can't browse the site).
hidden input on forms is an idea-- but I am unsure of the efficiency of integrating this with every menu item.
So the question remains--how can I force the session variables to store on the server instead of client cookies?
THANKS!!!
The problem is this:
Search engine optimization is interfering with my menus as it has query parameters ie > sidebar.php?mainMenu=1&subMenu=2, etc... I cannot pass variables this way.
Cookies would also not work, as I do not want my menu to RELY on cookies (if someone has them disabled- they can't browse the site).
hidden input on forms is an idea-- but I am unsure of the efficiency of integrating this with every menu item.
So the question remains--how can I force the session variables to store on the server instead of client cookies?
THANKS!!!