Brand new to HTML, I have experience programming in other languages, just having an issue with html.
I've looked around to try to find a way to have a "double post" in html that posts all of instances needed.
The reason why i need the multiple forms as of now, is because the outer code takes in sales information, and the moves through an authorize page, but i can only get one or the other to trigger.
<form method="post" action="sales_info_driver_page.cgi">
Outer code here
</form>
<form method="POST" action="http://www.example.com/su.php"><p>
<input type="text" name="Email" size="20"><br>
<input type="radio" name="Action" value="join-list" checked>Subscribe </p>
<input type="hidden" name="ThanksURL" value="2222">
</form>
Outer code here
<input type="submit" name="Submit" value=" Submit " >
Is it even possible for the inner form to be submitted via either a javascript function or some other means? i read that it is not very plausable to have nested forms, so is there another way to have this section submit properly?
Need by 12-5-12 if at all possible! Thanks ahead of time!