Thanks for the responses.
Wouldn't using session vars just be a trade-off of bandwidth for server memory? Does anyone know if there is a significant differnence (performance and pageload-wise) between the two?
I'm not really worried about the security issue. One way to secure a form is to run a small check at the top that checks the refferer, and if it is among your list of acceptable "submitters", process the page, otherwise die().
I am mainly looking for the differences in performance, from the user's perspective. Like, how long will it take for the script to run AND the HTML to be fully rendered? Not down to milliseconds per se, I just want to avoid doing it in a way that is clumsy and bloated. BTW, the forms are object-oriented and submit to themselves.
cheers,
Clay