Jump to content

input type submit / buttons with specific post results


Go to solution Solved by CroNiX,

Recommended Posts

I think I understand that there can only be one "submit" button on a page.

I want buttons for separate forms to not trigger the empty errors on the other forms...

 

How do you accomplish specific button actions?

 

I think I've tried it with javascript but you can do it with PHP right?

Thanks for any help.

  • Solution

You can have multiple submits...just give them different values

<input type="submit" name="submit" value="delete" />
<input type="submit" name="submit" value="add" />
<?php
if (isset($_POST['submit']))
{
  //form was submitted (name = submit)
  
  $action = $_POST['submit'];
  if ($action == 'delete')
  {
    //the submit with value of "delete" was pressed
  }
  else if ($action == 'add')
  {
    //the submit with value of 'add' was pressed
  }
}

whats the question about target? Perhaps you should be looking these up in the HTML specs so you know what's legal/valid and what they do?

https://developer.mozilla.org/en-US/docs/Web/HTML/Element

http://www.w3.org/TR/html5/

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.