//test.php
<html>
<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">
</form>
</body>
</html>
//welcome.php
<html>
<body>
Welcome <?php echo $_POST["name"]; ?><br>
Your email address is: <?php echo $_POST["email"]; ?>
</body>
</html>
PHP问题,提交表单并且在新的页面显示,但是新页面中不显示是怎么回事
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-


