I have some kind of a “setup wizard” page.
What I am trying to do is for any variables to be present in the page even when the user tries to refresh or revisit the page anytime until the user commits the changes to the database.
I am now using the Session Storage Manager and I think it works fine. I am also looking into using a temporary table for the values.
Do you have any other recommendations.
If I am going to use a temporary table, is there a direct way to create a “copy” data from the temp to a live table?
Using session or local storage is perfectly fine for this.
Yes, all you need to do is to query the temp table and loop through its records, then run database insert step and insert the values in the other table.