Log in

View Full Version : Form POST methods



EjeetNet
08-08-2007, 04:22 PM
Is it possible to have more then one action in a form,
For example i want to have the data in my form sent to a mailer and then posted to another processor, which will add the information to a database.

example:

<form action="http://mysite.ca/mailer.php" method="POST">

Can there be more then one of these?

Thanks!

Twey
08-08-2007, 04:56 PM
No. Have the mailer pass the information on to the other script; POST probably isn't the easiest way in PHP. Includes perhaps?