I have a 'Subscribe' email box on a main page that I want to (upon submission) send the variables to a popup window but I'm having problems.
The form I have been using is:
<form method="get" name="email" id="form2" onsubmit="MM_openBrWindow('subscribe.php','Subscribe','location=yes,width=350,height=200')">
<input name="email" type="text" size="12" maxlength="40" /><br />
<input type="radio" name="mode" value="add" checked="checked" />Subscribe <br />
<input type="radio" name="mode" value="delete" />Un-Subscribe <br />
<input name="submit_email" type="submit" id="submit_email" value="Submit" />
</form>
I added "email=<?echo$email?>" to the end of the url which is fine.... except if the email is caught in my verification the original page then says (i.e.) "email=xyz@zyz"
Any ideas?