Hi, the question's in the title really.
I have an online form where, after a series of stages, the user is sent off to a payment gateway on another server, then back again after completing their details there (no card or personal info is sent, just encrypted tokens, that's the point).
So can I rely on the session data still being available when they are sent back (via POST?), and also should I do so?
My testing would seem to indicate yes, but this is the first time I've tried to do anything like this. The alternative is to save form progress before the redirect & then reinstate it when they return. Would that be better & why if so?
TIA :)