Hi guys,
I have 3 pages where 1 of them (last one) is in secure server.
I use sessions in all of them and these sessions work fine in first two pages (using session_start()), but when I get switched to secure server (https://xxx.xx.../site/page3.php) a new session comes in.
I can see what the problem might be here. So instead I decided to use hidden input forms. I have no idea whether there is a limit on amount of data I can put in it and how big this limit is, but it won't work!
No I am stuck because I can't use neither $_POST, nor $_SESSION. Can someone please guide me on what should I do? I thought of using cookies but I have no idea how and I have tight deadlines for this thing.
Is there a way to retrieve the same session even after I switch to secure server. If you have any recommendations, sources I can look at, I'd appreciate them.
Tim