Answers for "php form multiple"

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 form multiple"

Browse Popular Code Answers by Language