I am having trouble with my session variables when I am using SSL. I have a site that uses session variables just fine, but when I go to the shipping page which is a secure page I am having trouble. Here is what my shipping page does:
- passes hidden variables (userid, Invoice # and Item #) from the shopping cart using POST.
- Queries the database (MySQL) for additional information. Gets the user's shipping address and the weight of the product, etc.
- The user chooses the shipping service then they click on a button that refreshes the page. The reason for this is to update their shipping information if they have made changes.
Step three is where the problem lies. When the page is refreshed all of the information is lost. I have tried using SESSION and session_register but neither makes a difference. Can anyone help? Or make a suggestion?