Click here to Skip to main content
15,885,092 members
Articles / Web Development / HTML
Article

Multiple Action Forms

Rate me:
Please Sign up or sign in to vote.
2.29/5 (9 votes)
13 Jan 20051 min read 124.4K   714   9   6
How to send data from a form to multiple pages at once.

Introduction

Have you ever wanted to make a simple form do multiple actions and you didn't know how. The answer was hidden from me for some time, but I managed to imagine how to do this when I read an article by Chris Maunder "Specifying multiple actions from a single Form".

In that article Chris manages to send information of the form to different pages, but there he needs different buttons for each action. So, I decided to edit a little bit of his code, to get multiple actions done by pressing the Submit button once. Now, I will explain you how to do this.

First let's have a simple form like this:

HTML
<form name=Form1 action= "login1.php" method=post>
Username <input type="text" name="username">
Password <input type="password" name="password">
<input type="submit" value="Send" name="button1" 
                     onclick="return OnButton1();">

Now, we have got a form. When we click the Submit button, it calls a JavaScript function:

JavaScript
<script language=javascript>
<!--
function OnButton1()
{
    document.Form1.action = "login2.php"    // First target
    document.Form1.target = "iframe1";    // Open in a iframe
    document.Form1.submit();        // Submit the page
    document.Form1.action = "page3.php"    // Second target
    document.Form1.target = "iframe2";    // Open in a iframe
    document.Form1.submit();        // Submit the page
    return true;
}
-->
</script>

OK, now we are submitting the data to two pages. As you can see they have got a target like a frame. This is because we need it to open the two new pages with the data, but for not bothering the user we hide the IFRAMEs like this:

HTML
<div style="visibility:hidden">
<iframe NAME="iframe1" WIDTH="40" HEIGHT="40"></iframe>
<iframe NAME="iframe2" WIDTH="40" HEIGHT="40"></iframe>
</div>

The page will send the data to IFRAME and the information will be processed as you wanted.

Note: The user will only see login1.php confirmation and not the second login confirmation. Maybe you could create a page for the user to know if he could login in both pages or like me create a page that redirects to the index.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Chile Chile
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionWorks Great! Pin
Member 979572929-Jan-13 10:15
Member 979572929-Jan-13 10:15 
QuestionSecond action not working Pin
Edwin Herrendorfer22-Feb-12 2:37
Edwin Herrendorfer22-Feb-12 2:37 
Questionmultiple action form submit Pin
robert McCorkle5-Apr-07 23:07
robert McCorkle5-Apr-07 23:07 
Questioncan you help me! [modified] Pin
Mr bluu13-Aug-06 22:49
Mr bluu13-Aug-06 22:49 
Generaldoesnt work Pin
MACscr16-Apr-06 23:18
MACscr16-Apr-06 23:18 
GeneralRe: doesnt work Pin
Benyi Robert17-Nov-11 4:47
Benyi Robert17-Nov-11 4:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.