我想在html文件中运行php代码

时间:2018-03-04 14:42:32

标签: php html .htaccess

我是PHP的初学者,我试图在HTML文件中运行php代码。

HTML文件

<!DOCTYPE html>
<html>
<head>
    <title>Test Website - Php in HTML</title>
</head>
<body>
    <h1>Testing php in html file</h1>
    <p><?php echo "php text goes here..." ?></p>
</body>
</html>

.htaccess文件

AddType application/x-httpd-php .htm .html

这是我查看网页来源时可以看到的内容 enter image description here

已经尝试过这里提到的步骤 - &gt; Using .htaccess to make all .html pages to run as .php files?

请帮我在html文件中运行php代码。

1 个答案:

答案 0 :(得分:-1)

如果您要运行此文件,则需要使用.php而不是.html保存文件。尝试使用.php,您将得到正确的回复。