I'm new with this, so please be patient with me. 🙂
I have a form where I gather input from the user, and then I want to display their input for verification prior to updating the database (which I want to do in the second form that is the confirmation). I'm not having luck with it.
I'm thinking--either I need to do it all in one script (the input and echo'ing the input), but I need to know how to refresh the screen in-between.
Otherwise, I need some help in how to pass these variables to a second form for echo'ing the input.
Here's what I'm doing:
Form 1 - gather the input and rename the variables for display
I get the input:
( $_POST[first_name]
..then define a variable:
$first_name = $_POST[first_name]
This carries me through the existing form, but when I try to display $first_name in the subsequent (echo'ing) form, it's not there.
Can anyone help me out of this?? Any help is appreciated! Thank you.