Stoked
08-10-2003, 07:52 PM
I have a flash site and I want to put a mailing list sign up on my site. I signed up for the mailing list at www.YourMailingListProvider.com. When you sign up it gives you the html you need to put it on your site. How would I put the HTML on my Flash site so they can sign up for it. The html for my Mailing List is(if needed)..
<form method=post action=http://www.yourmailinglistprovider.com/subscribe.php?Liedike>
<table border=0>
<tr>
<td colspan=2>Fill out your e-mail address<br> to receive our newsletter!</td>
</tr>
<tr>
<td><input type=text name=YMP[0] size=20 maxlength=50></td>
<td><input type=submit value=Submit name=submit></td>
</tr>
<tr>
<tr>
<td colspan=2><font size=1 face=arial><input type=radio name=action value=subscribe CHECKED> Subscribe<input type=radio name=action value=unsubscribe>Unsubscribe</font></td>
</tr>
<td colspan=2><font size=1 face=arial><a href=http://www.yourmailinglistprovider.com/ target=_top>Powered by YourMailinglistProvider.com </a></font></td>
</tr>
</table>
</form>
How would I use that HTML in my flash page?
<form method=post action=http://www.yourmailinglistprovider.com/subscribe.php?Liedike>
<table border=0>
<tr>
<td colspan=2>Fill out your e-mail address<br> to receive our newsletter!</td>
</tr>
<tr>
<td><input type=text name=YMP[0] size=20 maxlength=50></td>
<td><input type=submit value=Submit name=submit></td>
</tr>
<tr>
<tr>
<td colspan=2><font size=1 face=arial><input type=radio name=action value=subscribe CHECKED> Subscribe<input type=radio name=action value=unsubscribe>Unsubscribe</font></td>
</tr>
<td colspan=2><font size=1 face=arial><a href=http://www.yourmailinglistprovider.com/ target=_top>Powered by YourMailinglistProvider.com </a></font></td>
</tr>
</table>
</form>
How would I use that HTML in my flash page?