I’ll try and explain this as good as i can.
on the front page i got a "subscribe " form for a mailinglist and a "send" button. you can enter your email in to that form. the code looks like this:
<form action="mailing_list.php" method="post" style="margin-bottom:0; margin-right:0">
<font class="font_overall">Newsletter:</font>
<input type="text" value="your email" name="email" maxlength=50 size=16 style="height:18px; font-size: 8pt;"><input type="Submit" value="Send" style="height:18px; font-size: 8pt;"></form>
After pressing the send button a page will load with: "first name", "last name" and a "email" form. now the first and last name form will be empty. but i want the email form to show the email the user entered on the front page before pressing the send button.
So basically i want to: show the email that was entered in the form on the front page, to show in the email form of the mailing list page.
I’ve tried using value but that shows the vars as text. any idea how to get this done? if more explanation is needed just ask.
Thanks.