Multiple Forms to single submit.. (Different actions)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • chintan85
    New Member
    • Jun 2010
    • 33

    Multiple Forms to single submit.. (Different actions)

    Hi guys,

    I want to pass multiple forms to different scripts. Lets say. Can u please help me..

    Code:
    <form action="pass1.py" method="post" name="Submit">
    <input name="gene" type="checkbox" value="gene" /> GENE 1
    
    
    <form action="pass2.py" method="post" name="Submit">
    <input name="gene" type="checkbox" value="gene" /> GENE 2
    
    
    <form action="pass3.py" method="post" name="Submit">
    <input name="gene" type="checkbox" value="gene" /> GENE 3
    
    <input type = submit value = submit>
    
    </form>
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    with a standard HTML form, you can submit to only one target.

    you could use AJAX to send data to as many targets as you want, but you have to collect the data to be send yourself.

    Comment

    Working...