So I have a program that takes in a Customers information. I am writing the page so that it can be used to edit the customers information or add a new customer to the database.
So I have a PHP script that generates a webpage with 5 forms. These forms will be used to gather the customers data and put it into a Customer Object. I do not have a prebuilt object. What I want to do is when the user presses submit. I want the script to quickly look at the values in the various forms place them into an object THEN submit the object to the next page. I realize that Serialization is the way to go with the submission part. The problem is I do not know how to get at the data and turn it into a serialized object before I submit to the next page.