So is this correct for collecting the email from the form to POST to signup2.php?
<html>
<head>
<title>My Variables HTML Form</title>
</head>
<body>
<form action="signup2.php" method="<? $_POST["email"] = ""; ?>"
email: <input name="email" type="text"><br>
<input type="submit">
</body>
</html>
It seems to post correctly in the URL, but I can't seem to get it from signup2.php to the order form.
I am using header redirects like this:
// --------------------------------------------_44-90
header("Location: "."http://5.publisher.pay.clickbank.net");
}
else
{
// -------------------------------------------- _34-95
header("Location: "."http://6.publisher.pay.clickbank.net");
}
Would this affect the process of getting the email variable posted?