我有这两个文件:
index.html
<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>
这是来自there
的示例当用户填写表格并点击&#34;输入&#34;它应该显示:
Welcome, the_name_you_enter
Your email address is address_you_enter
但对我来说,它只显示welcome.php
源代码(我正在使用Safari 7)。
有谁知道为什么?
答案 0 :(得分:2)
这听起来就像是从没有执行php的服务器调用页面。
答案 1 :(得分:1)