passing form variables to another website
Hi,
Basically, I want to pass form variables to another website for continous 5 times, what's the best way to do this? Here is the sample code. So the form will submit 5 times to the action website
<cfloop from="1" to="5" index="index">
<form action="http://www.website.com/info.cfm" method="post" id="frmname" name="frmname">
<input type="hidden" name="name" value="name1" />
<input type="hidden" name="id" value="#index#" />
<input type="hidden" name="test" value="test tex" />
</form>
<script language=javascript>
document.frmname.submit();
</script>
</cfloop>
