Forms : <form method="POST" to 2 different pages
I have a form that I need to post the info to 2 different places like this
STEP 1
<form action="enroll1.cfm" method="POST" id="1">
10 Form Fields
</form>
>>>>> Do Database insert
STEP 2
Now I need to take that same form info and post it to another url so that it can be inserted in another database at another company.
Like this
<form action="enroll2.cfm" method="POST" id="1">
10 Form Fields
</form>
>>>>> Do Database insert
I get the first form posted and the data gets inserted into the database but now how do I pass the 10 form fields to the other url (Step 2)?
