I built a system to allow new members to join an organisation last year when I was just starting out as a programmer. It's a multi-step process across several pages that concludes after a successful credit card transaction. Part of the complication was the requirement for family memberships, which recorded the details of everyone in the family and created records for them as well.
Originally, I maintained the form input data across the steps using arrays in session variables and the data was committed to the DB after a the credit card payment went through.
I'm now completely rebuilding it since I've learned a lot since then and it's become too messy to maintain, but I still have no idea what the best way to manage this data is.
The original rationale was that because there were a lot of steps, and the requirement for a payment at the end, it seemed to make no sense to commit data to the DB until the process was complete, especially since it involved records in multiple tables and the idea of having to periodically flush out the incomplete records seemed like unnecessary and overly complicated effort. Having done it the first time around, the arrays in session variables got extremely messy and involved a lot of verification in the code since it was potentially error-prone. I also lost a lot of time trying to correct for session timeouts (which seemed to happen far more often than I would have expected when I was developing).
So I ask those with far more knowledge and experience than myself: What is the best way to maintain temporary data through a multipage registration process?