|
Posted by seaside on 12/17/06 15:34
Norman Peelman schrieb:
> 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");
Please note, that - using this method - you forward a GET request,
which is
restricted regarding the amount of data transferred. Moreover, you
might need to
change your PHP scripts to read $_POST and $_GET.
Navigation:
[Reply to this message]
|