Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

how to submit same form for different purpose using two submit button in php

Give each input a name attribute. Only the clicked input's name attribute will be sent to the server.

<input type="submit" name="publish" value="Publish">
<input type="submit" name="save" value="Save">
And then

<?php
    if (isset($_POST['publish'])) {
        # Publish-button was clicked
    }
    elseif (isset($_POST['save'])) {
        # Save-button was clicked
    }
?>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #submit #form #purpose #submit #button #php
ADD COMMENT
Topic
Name
7+1 =