Answers for "php form action submit to same page"

PHP
1

form action on same page in php

<form action="<php echo $_SERVER['php_shelf'] ?>" method="POST">
  <--
  Your inputs here
  --!>
  
  
 </form>
  
 <?php
  if(isset($_POST['your input name']){
  	$input = $_POST['input name'];
  }
  
  ?>
Posted by: Guest on April-15-2021
0

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
    }
?>
Posted by: Guest on October-18-2021

Code answers related to "php form action submit to same page"

Browse Popular Code Answers by Language