472,331 Members | 1,567 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,331 software developers and data experts.

how to create multiple submit button in a php form and redirect its data

Hi,

I have a form containing

ID
Type
Quantity
Rate

values. it should have two submit buttons which, when posted, will do the two different things in two different scripts.

how to create multiple submit button in a php form and redirect its data to a selected script ?
Sep 12 '08 #1
7 15744
pbmods
5,821 Expert 4TB
Heya, Christina.

Give each submit button a name:
Expand|Select|Wrap|Line Numbers
  1. <input type="submit" name="submitted" value="Send to Friend" />
  2. <input type="submit" name="submitted" value="Send to Random Hooligan" />
  3.  
Then use the value of the submitted input on the PHP side:
Expand|Select|Wrap|Line Numbers
  1. switch( $_POST['submitted'] )
  2. {
  3.   case 'Send to Friend':
  4.     .
  5.     .
  6.     .
  7.   break;
  8. }
  9.  
Sep 12 '08 #2
Onclick you change the action value of the form ;)

Expand|Select|Wrap|Line Numbers
  1.  
  2. <html>
  3.  
  4. <FORM action="mulsub1.php" method="post">
  5. First name: <INPUT type="TEXT" name="FNAME"><BR>
  6.  
  7. <INPUT type="submit" name="bsubmit" value="Submit 1" onclick="action='mulsub1.php';">
  8. <INPUT type="submit" name="bsubmit" value="Submit 2" onclick="action='mulsub2.php';" >
  9. <INPUT type="submit" name="bsubmit" value="Submit 3" onclick="action='mulsub3.php';">
  10. </FORM>
  11.  
  12. </html>
  13.  
  14.  

Hope it helps!
phpNerd01
Sep 12 '08 #3
pbmods
5,821 Expert 4TB
The main issue with phpNerd01's solution is that it requires Javascript. If a User has Javascript disabled, the form will not behave properly.
Sep 13 '08 #4
coolsti
310 100+
What pbmods says concerning a user having Javascript disabled is correct, but .....

a bit of javascript on the client side allows you to do so much more with your page, and makes a lot of actions easier to perform. One of which is the solution to your problem suggested by phpnerd01 above, which is the way I also do things.

Therefore, it is probably better to create your website and pages in such a way that Javascript is essential for it to perform. That way the user needs to enable Javascript to get anywhere. In my opinion, if a user today wishes to disable Javascript or uses a browser that does not use Javascript, then that user has no business looking at my pages :)
Sep 14 '08 #5
pbmods
5,821 Expert 4TB
Therefore, it is probably better to create your website and pages in such a way that Javascript is essential for it to perform. That way the user needs to enable Javascript to get anywhere. In my opinion, if a user today wishes to disable Javascript or uses a browser that does not use Javascript, then that user has no business looking at my pages :)
Because of XSS, it is not uncommon for Users to disable Javascript altogether or to use NoScript to selectively disable it.

There are also still a significant number of PDA and cell phone browsers that do not support Javascript. And visually-disabled Users might be using a speech-based or otherwise-specialized browser that cannot execute Javascript.

Saying that Users have to have Javascript turned on to use your site is all fine and good, but is it worth it to to have to maintain code that functions differently in each browser just so you can alienate 4% of your User base?
Sep 14 '08 #6
coolsti
310 100+
Well, this is not the place for such a discussion. It all depends on the application and the audience. My audience has not been general public, but company wide users, and so I feel I can demand that Javascript be enabled and a browser that is compatible with what I develop my pages for should be used.
Sep 14 '08 #7
I did it using the follow idea:

<?php
//file: page.php
// you don't need to create other PHP files.

echo "<form method='post' action='page.php'>";
echo " <input type='submit' name='agree' value='agree'/>";
echo "</form>";
echo "<form method='post' action='page.php'>";
echo " <input type='submit' name='disagree' value='disagree'/>";
echo "</form>";

if($_POST['agree'])
{
echo "You AGREE";
}

if($_POST['disagree'])
{
echo "You DISAGREE";
}
?>


I hope it helps!
:-)
Apr 27 '11 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

8
by: vishal | last post by:
i have one form on which the data is stored in database and suppose the user clicks the back button of browser and again click on submit button...
4
by: Dave Smithz | last post by:
Hi there, When filling out a web form on a php page that is submitted to a search which lists the results based on the criteria provided (in the...
8
by: Matt | last post by:
I want to submit the form to the server without opening another page. When we do the following, it will submit the form data in myform to the...
2
by: Hongyu | last post by:
I am trying to implement a simple JavaScript of redirecting my window to a new URL upon clicking a submit button. This is an easy task except when...
2
by: Martin | last post by:
Hi, I want to use Imagebuttons () to submit a form, as following: <form ....> <Input name="buttonEdit" type=Image onclick="ActionHandle("2")>...
5
by: Codeman II | last post by:
Hi there, I am building a form where the user must upload a picture and fill in his details. Now I have a problem as all of this is on the same...
0
by: spamfurnace | last post by:
Hi there on this rainy old day, I have some users logging into an asp.net website. The server the site sits on allows users to webmail through a...
7
by: David T. Ashley | last post by:
Hi, For a web page, I want a SUBMIT button that commits the form data and a CANCEL button that goes to a different target (i.e. a different...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: tammygombez | last post by:
Hey everyone! I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.