PHP显示为纯文本

时间:2014-03-07 20:54:48

标签: php html forms

我有一个简单的表单和php文件。当我单击提交时,它只会提取一个包含resources.php内容的纯文本文件。为什么会发生这种情况?

的index.html

<html>
<head>
</head>
<body>

    <form action="resources.php" method='POST'>

        <input type="text"  placeholder="Name" name="name"><br>
        <input type="text"  placeholder="Organization" name="organization"><br>
        <input type="email" placeholder="E-Mail" name="email"><br>
        <input type="text"  placeholder="Street Address" name="streetaddress"><br>
        <input type="text"  placeholder="Phone Number" name="phonenumber"><br>
        <input type="text"  placeholder="What is three plus four?" name="human"><br>

        <input type="submit">

</form>
</body>
</html>

和resources.php文件......

<html>
<head></head>
<body>

<?php

    echo '<pre>'.$_POST.'<pre>';

?>

</body>
</html>

感谢。

1 个答案:

答案 0 :(得分:2)

以下是您问题的可能答案:

  1. WEB服务器未正确处理您的PHP代码,因为未安装或配置错误。
  2. 您根本不使用网络服务器。确保从localhost(或任何服务器)加载页面,而不是从文件本身加载页面 例如:localhost / path / to / index.html 而不是c://程序文件......