My main goal is to save the user's submitted form data into our MSSQL database and email service provider (iContact)
I am constraint of using iContact's page as the action attribute. Here is the example:
< form action="icontact.php" id="" >
After the iContact.PHP run, it will redirect the page to my confirmation page.
So is it possible to still access the submitted form data? So I can then run my own codes to save it on my database?
Thanks!
SIDE NOTE: iContact is an email marketing service that I use. I have contacted iContact's developer and said that I am required to use their icontact.php page to be able to store my data into their email contact database.
Current Structure:
- User fills out the Form in HTML, user submits
- Goes to iContact php page (which I don't have control)
- After #2 process, redirect the page into my confirmation page.
