I wanted to see if it is possible to create a seperate page where users can enter their username and password on a seperate page, then click next, then they would be taken to a page where they would enter first name/last name, then click next where they would be taken to the signup.php page, where those previously filled out fields would be populated but hidden, and then continue the process with the remaining fields like normal. P.S. I love this script! Thanks, Brandon
I figured out how to pass data from form fields on other pages to the signup.php page. My only problem is, that when I pass the data to the signup.php page, nothing displays next to "Membership Type" Brandon
Maybe try something like this on your first page. Code: <form name="form1" method="get" action="amember/signup.php" onSubmit="return Next();" id="form1"> <input name="email" type="text" /> <input name="name_f" type="text" /> <input name="name_l" type="text" /> <input name="password" type="text" /> <input type="hidden" name="price_group" value="enter number here"> <input type="hidden" name="product_id" value="enter number here"> <input type="hidden" name="lang" value="en"> <input type="hidden" name="hide_paysys" value="paypal_r"> </form>