PHP文件无法运行

时间:2014-04-06 11:30:26

标签: php html

我有这两个文件:
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)。 有谁知道为什么?

2 个答案:

答案 0 :(得分:2)

这听起来就像是从没有执行php的服务器调用页面。

答案 1 :(得分:1)

这通常是因为PHP文件未在Web服务器上执行,或者您的Web服务器上未启用PHP。

您可能正在尝试使用file://

直接访问该文件

看看MAMP(我假设您使用的是OS X)