可能重复:
表单提交时 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”