これがかなり基本的な質問である場合は申し訳ありません。
HTMLフォームのページがあります。コードは次のようになります。
<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>
次に、私のファイルsubmit.php
には、次のものがあります。
<?php
$example = $_POST['example'];
$example2 = $_POST['example2'];
echo $example . " " . $example2;
?>
ただし、外部ファイルの使用を排除したいと思います。同じページに$_POST変数が必要です。どうすればいいですか?