重複の可能性:
フォーム送信時にphp$_POST配列が空
フォームに記入してから、データを別のページに表示しようとしています。最初のドキュメントはこれです
<html>
<head>
</head>
<body>
<form action="testerpage.php" method="post">
Name: <input type="text" name="testname">
<input type="submit">
</form>
</body>
</html>
他のページ(testerpage.php)はこれです
<html>
<body>
<?php
echo $_POST["testname"];
?>
</body>
</html>
testerpageが最初のページ(welcome.phpという名前)の情報を表示しないのはなぜですか?「get」でも動作しません