查了很多网上的问题,都没解决,希望这里可以解决一下吧。
win7 , wampserver , php 5.5 版本。。
php.ini 设置了 “ enable_post_data_reading = On ” 和 variables_order = "GPCS"
index.html:
<html>
<head>
</head>
<body>
<form action="welcome.php" method="post" >
Name: <input type="text" name="name"><br>
E-mail: <input type="text" name="email"><br>
<input type="submit" name="submit">
</form>
</body>
</html>
welcome.php:
<html>
<body>
Welcome : <?php echo $_POST["name"]; ?><br>
Your email address is : <?php echo $_POST["email"]; ?>
</body>
</html>
但是提交之后,就是不显示输入的数据啊。求解。

