PHP 上传到服务器(Ipage)时被注释掉

PHP being commented out when uploaded to server (Ipage)

我是 PHP 的新手,正在尝试 运行 我的第一个脚本。我在你的电脑上读到 运行 php,你有 运行 一个我不想做的服务器。

所以我试图 运行 它在 Ipage.com

托管的服务器上

该程序只是一个基本的 html 文件,带有一组完整的标签

我尝试使用 ftp 链接 windows 资源管理器,使用网站上的 "upload" 按钮,并使用网站上的编辑器直接编辑文件。每当我添加 php 标签并保存或上传文件时,当我在 ipage 文件管理器上查看它时,它们被注释掉了

这是我上传文件时发生的情况

<!DOCTYPE html>
<html>
<title>Striations</title>
  <head> 

    <link href="css/LandingPageStyle.css" type="text/css" rel="stylesheet">
  </head>

<body>
    <!--?php echo "HELLO"; ?--> //originally <?php echo "HELLO"; ?>
    <h2>Our site is currently under construction, please check back later!</h2>
    <img src="media/construction man.png"></img>
</body>

</html>

我对 php 和托管之类的东西完全陌生,我可能会错过一些关于如何 运行 php

的重要步骤

我很感激并解释 php 在被发送到浏览器之前如何被传输到 html

EDIT:: 我知道 ipage 支持 php 的事实,他们提到了一些关于更改我的根文件目录的事情,但即使我将文件移动到他们所说的位置,它也做了同样的事情

我还应该做些什么来启用 php?

It is an html file with php tags... I'm supposed to save it as .html, right?

如果您将其保存为 index.html,则 PHP 解析器默认不会 运行。将其命名为 index.php 或(如果可以的话)use htaccess to parse HTML files as PHP