I have searched for this on the forums and didn’t find anything on this one so here goes…
I am using Send Studio to manage my website’s newsletter. I am trying to implement the collection of subscribers using a flash form. When I submit the form from flash, I have to send the variables to this .php page I am trying to code. The purpose of this .php page is to parse the info from flash and send it straight on to the Send Studio script. So I need this .php page to basically do a header redirect…but it has to be done by POST.
Specifically, the vars coming from flash need to hit my .php page and essentially “fill out” the following form and submit it:
<form action="http://www.scripturl.com/users/form.php?FormID=XX" method="post">
<p>Your Email Address: <input type="text" name="Email" value="" size="30"></p>
<p><input type="hidden" name="SelectLists[1]" value="YES">
<select name="Format">
<option value="1">Text</option>
<option value="2" SELECTED>HTML</option>
</select>
</p>
<input type="hidden" name="FormCode" value="blahblahblahblahblah">
<p>First Name: <input value="" id="Fields[1]" name="Fields[1]" type="text"></p>
<p><input type="submit" value="Subscribe"></p>
</form>
Anyone know how to do this? I have seen some info floating around that says to do a redirect like this you have to use fsockopen – but this is beyond my skill level.
Any and all help is greatly appreciated.