我是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
已经尝试过这里提到的步骤 - &gt; Using .htaccess to make all .html pages to run as .php files?
请帮我在html文件中运行php代码。
答案 0 :(得分:-1)
如果您要运行此文件,则需要使用.php
而不是.html
保存文件。尝试使用.php
,您将得到正确的回复。