Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use $_POST to get input values on the same page

Tags:

php

Sorry if this is a rather basic question.

I have a page with an HTML form. The code looks like this:

<form action="submit.php" method="post">
  Example value: <input name="example" type="text" />
  Example value 2: <input name="example2" type="text" />
  <input type="submit" />
</form>

Then in my file submit.php, I have the following:

<?php
  $example = $_POST['example'];
  $example2 = $_POST['example2'];
  echo $example . " " . $example2;
?>

However, I want to eliminate the use of the external file. I want the $_POST variables on the same page. How would I do this?

like image 856
Piccolo Avatar asked Jan 30 '13 02:01

Piccolo


1 Answers

Put this on a php file:

<?php
  if (isset($_POST['submit'])) {
    $example = $_POST['example'];
    $example2 = $_POST['example2'];
    echo $example . " " . $example2;
  }
?>
<form action="" method="post">
  Example value: <input name="example" type="text" />
  Example value 2: <input name="example2" type="text" />
  <input name="submit" type="submit" />
</form>

It will execute the whole file as PHP. The first time you open it, $_POST['submit'] won't be set because the form has not been sent. Once you click on the submit button, it will print the information.

like image 153
KaeruCT Avatar answered Oct 16 '22 00:10

KaeruCT