Hi,
I would like to submit form data in two ways, with the one submit button.
The posting methods i want to use are...
To post to mysql database:
<form action="success.php" method="post" name="form" id="form" onsubmit="return validate(this)">
To post to email:
<form action="http://www.mywebsite.com/cgi-bin/cgiemail/form/form.txt" method="post" onsubmit="return validate(this)">
<input type="hidden" name="success" value="http://www.mywebsite.com/form/success.html"/>
How can I combine two actions in one form?
Thanks.