Originally posted by morphy@6deex
turn on/recompile php with trans_id so the engine will get charge of how pass the SID through pages...
and use sessions instead of cookies to store yr ID...
i will look into that, but if you can be a bit more detailed as to what that does.
i orgianlly used sessions, but then a shopper would have to close his browser then reopen it if he wanted to be able to place another order. the items are stored in a table, the product ID and session ID are stored there, when they checkout, all that sessionID s are selected and then shown in the checkout. even using a variable that turns it on or off after they processs the order, there is no way to reset the session ID in order to show only those items from the second order as a seperate order.
did that make sense?
that is why i use cookies now for the random number session variable. i can reset it after the order has been processed and then create a new random "session" ID to reference that new order.
i could probably have the ($HTTP_COOKIE=="") check to see if there are a certain number of characters and remove any blank spaces....right? that way, even if a person is using some sort of cookie blocker, they would have to make up some sort of string.
thanks