473,473 Members | 1,573 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

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

3 New Member
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 15837
pbmods
5,821 Recognized Expert Expert
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
phpNerd01
8 New Member
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 Recognized Expert Expert
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 Contributor
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 Recognized Expert Expert
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 Contributor
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
Ivan Carrasco Q
2 New Member
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 then the data will be saved in database again. so...
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 form), all works fine and as expected. ...
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 IIS, and open page2.asp. <form name="myform"...
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 I have to put an input type='submit' in front of...
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")> <Input name="buttonnew" type=Image ...
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 form. How will I be able to have the Browse...
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 common service/component called Horde. In order...
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 script). I haven't figured out how to do this,...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

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.