I have another problem, again, I am VERY much a newbe at PHP.
After the customer selects the item they want to purchase, the data is handed off to an outside cartserver service via a form.
Code: Select all
<form action='http://www.cartserver.com/sc/cart.cgi' onSubmit='javascript:pageTracker._linkByPost(this)' method=POST>
that customer has the option to "continue shopping" and if he/she clicks it they are directed back to the page they were just at ie: the PHP generated page. At this time all they are getting is a blank page because the prior posted data that was passed to it no longer exists. I have been playing (trying to learn) with $_session[] but am currently not able to restore that data needed to rebuild the page. The data is a number and 2 letters from 3 different variables.
Can someone walk me through the process of restoring that data.
Oh, and I'm not allowed to use cookies.
Thanks a bunch in advance.