Answers for "php create multiple submit buttons for differnt inputs in a loop"

PHP
1

multiple submit button in php

<?php
    if (isset($_POST['publish'])) {
        # Publish-button was clicked
    }
    elseif (isset($_POST['save'])) {
        # Save-button was clicked
    }
?>
Posted by: Guest on November-21-2020

Code answers related to "php create multiple submit buttons for differnt inputs in a loop"

Browse Popular Code Answers by Language