Posted by Norman Peelman on 12/17/06 05:09
From: "Norman Peelman" <npeelman@cfl.rr.com>
Subject: Re: posting form data to two php scripts at once
Date: Sunday, December 17, 2006 12:06 AM
<one.1more@gmail.com> wrote in message
news:1166317725.715320.309280@80g2000cwy.googlegroups.com...
> How do i post the form data to different php files at once. I tried the
> following code but it doesn't work. the data is sent only to the first
> php file.
>
> <form method="post" action="insert.php" action="mail.php">
> Email<input type="text" name="email" value ="" size="20" />
> <input type="submit" value="submit" />
> </form>
>
>
> Is there a solution?
>
Yes, you just have to call the second script from the first. You could
try:
at the end of the first script---
header("Location:
hxxp://your.domain.com/second_script.php?var1=$var1&var2=$var2");
....and then in the second script access the variables via $_GET['var1'] or
$_REQUEST['var1'] etc. But then you more than likely need the second script
to return back to the original page so you'll need another header() call
from there.
....or you could use the 'curl' extension (almost same effect)
....or you could just incorporate the two scripts together. chances are this
is your simplest solution.
Norm
--
FREE Avatar hosting at www.easyavatar.com
Navigation:
[Reply to this message]
|