Jump to content

multiple submit buttons


countdrac

Recommended Posts

hi, ive looked at a few forums and stuff on this and ive tried everything but i cant get it to work...

 

im trying to use multiple submits either to redirect to another page or even just to get me to the same page but to be able to distinguish which button was pressed (theres a save and a preview)

 

<form action="next.php" method="post">

<input type="text" name="name">

<input type="submit" value="submit" id="submit">

        <input type="submit" value="preview" id="preview">

</form>

 

and then next.php contains:

 

if ($_POST['submit'])

{

echo "test1";

}

else if($_POST['preview'])

{

echo "test2";

}

else

{

echo "broken <br />";

}

 

so when i try to access $_POST['submit'] the whole thing crashes!

thanks for the help

Link to comment
Share on other sites

<form action="next.php" method="post">
      <input type="text" name="name">
      <input type="submit" value="submit" name="submit">
      <input type="submit" value="preview" name="preview">
   </form>

 

that code will help you achieve above goal, however, to make it more safe:

if (isset($_POST['submit']))
   {
      echo "test1";
   }
   else if(isset($_POST['preview']))
   {
      echo "test2";
   }
   else
   {
      echo "broken
";
   }

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.