two submit buttons

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • selvialagar
    New Member
    • Apr 2008
    • 57

    #1

    two submit buttons

    i have 2 submit buttons in a form with values submit and cancel.when i click cancel button it goes to the submit page...it wont take it's own url...when i tried with button type then no action happened...what to do...plz help me...
  • hsriat
    Recognized Expert Top Contributor
    • Jan 2008
    • 1653

    #2
    Originally posted by selvialagar
    i have 2 submit buttons in a form with values submit and cancel.when i click cancel button it goes to the submit page...it wont take it's own url...when i tried with button type then no action happened...what to do...plz help me...
    Keep the code for both Submit and Cancel in the same page with and make the algorithm work like this...
    [php]<?php
    if (isset($_POST['Submit']))
    {
    //add the code for submit
    }
    elseif (isset($_POST['Cancel']))
    {
    //add the code for cancel
    }
    else
    {
    die('Invalid Request');
    }[/php]

    Comment

    • selvialagar
      New Member
      • Apr 2008
      • 57

      #3
      thank u very much....

      Comment

      • hsriat
        Recognized Expert Top Contributor
        • Jan 2008
        • 1653

        #4
        You are welcome :)

        Regards

        Comment

        Working...