What I am attempting to do is the following:
<signup.html>
User fills in the form and submits their data. [form layout]
<verify_signup.php>User data is seen in contrast to page and fills in the data provided in page layout. At bottom of page, user is asked to 'verify' the data submitted is correct.[form layout]
Variables used: $email, $name
<enter_signup.php>User information is inserted into mysql database and displayed a page their personal data was entered and a login password will be sent via e-mail to the address provided.
The problem I am having is that once the user verifies (on the 2nd page) their data is correct, the variables of $name and $email are not getting passed over to the enter_signup.php page. I tried echo'ing the $name and $email on the other pages, and it shows up correctly... but its just not showing up on the 3rd page.
Anyone got an idea on how to fix this?
-- M