php文件自动下载而不是在浏览器中显示?

时间:2014-01-03 09:23:49

标签: php html

在我的html文件中,我尝试链接到php文件(表单操作):

<!DOCTYPE html>
  <html>
    <head>
      <title>Google</title>
    </head>
    <body>
      <div style="text-align: center">
        <h1>Google</h1>
          <form action="server.php" method="get">
          <input name="q" style="width: 300px" type="text">
            <br>
          <input type="submit" value="Google Search">
          <input type="submit" value="I'm Feeling Lucky">
          </form>
        </div>
      </body>
    </html>  

server.php只是一些html代码。

当我点击“谷歌搜索”链接时,Chrome会下载该文件而不是server.php

我chmod google.html转到rw - r - r

我chmod server.php到rw --------或600

如何让它停止下载server.php

1 个答案:

答案 0 :(得分:1)

您需要在服务器上运行PHP。如果您没有Web服务器,它将只下载该文件,因为没有什么可以解析脚本。

看看WAMP(用于Windows),LAMP(用于Linux)或MAMP(用于mac)