Re: 1 Form, 2 Actions?
- From: "Kimmo Laine" <spam@xxxxxxxxxxxxx>
- Date: Thu, 30 Mar 2006 16:27:51 +0300
"Mark" <Mark.Fenbers@xxxxxxxx> wrote in message
news:e0gjmt$gbg$1@xxxxxxxxxxxxxxxxxxxxx
I have a lengthy form (i.e., many inputs) on my form.php page. What's
different about this form than many others I've created is that I want the
user to have a choice of submitting this form data to one of two pages,
choice1.php or choice2.php, both of which read $_POST data from the form.
Obviously, a 'submit' button will send the user to the page specified by
the form's 'action=' setting, so I would have to employ some sort of
trick. But this is where I'm drawing a blank! What combination of PHP,
Javascript, and HTML would do the trick?
Set the action to page3.php which has only the following:
<?php
if(isset($_POST['submit1']))
include('page1.php');
else if(isset($_POST['submit2']))
include('page2.php');
?>
And in the form you naturally have
<input type="submit" name="submit1" value="1">
<input type="submit" name="submit2" value="2">
--
"En ole paha ihminen, mutta omenat ovat elinkeinoni." -Perttu Sirviö
spam@xxxxxxxxxxxxx | Gedoon-S @ IRCnet | rot13(xvzzb@xxxxxxxxxxxxx)
.
- Follow-Ups:
- Re: 1 Form, 2 Actions?
- From: Treefrog
- Re: 1 Form, 2 Actions?
- References:
- 1 Form, 2 Actions?
- From: Mark
- 1 Form, 2 Actions?
- Prev by Date: Re: Strict types
- Next by Date: Re: 1 Form, 2 Actions?
- Previous by thread: Re: 1 Form, 2 Actions?
- Next by thread: Re: 1 Form, 2 Actions?
- Index(es):