NUB (new useless body) Question here: What is the best way to pass a fair amount of variables between pages or directly into a sql table without having to pass them between pages using $POST[]? Basically here is my scenario: A simple app that allows a user to enter a dozen or so values into a form. From there the form data is passed to a function page that inserts into a MySQL backend. Its really simple but this page will eventually have about 30 fields of data and specifying 30 fields of POST data such as $var1=$POST['var1'];........$var30=$_POST['var30']; isnt clean coding or easy to manipulate. What is the professional way to move this data between the pages? POST or register the data into a session var then retrieve on the functions.php page? Is there a better way to put all this form data into a backend such as send the data to the same page its on? Could someone provide a code snippet or example of the best way to have form data entered right into a sql db? I am using a class that has about 20 vars in there a default constructor and a few class functions. would like to use a class object to hold this data and be used to pass around. Thank you so much in advance...