0

我整天都在寻找在 HTML 文件中执行 PHP 文件的解决方案。

我使用基于 PHP 的 CMS。此 CMS 使用设计模板系统,其中设计必须位于 index.htm 文件中。当将此文件重命名为 index.php - 它不运行(测试)。

我正在设计一个新的 Clanpage 并想插入一个“serverviewer”。

这是一个 PHP 文件,它执行以下操作:

图片链接

我用它来调用php文件:

  <div style="width: 280px; height 90px; float: left;margin-right: 10px; margin-bottom: 15px;" >
    <?php include("http://www.this-is-war.com/tiw/include/designs/TiWlog/sv/sv_01.php"); ?>
  </div>

但不幸的是,没有解析 HTML 文件中的 php 代码,而且我没有得到 Serverviewer。

在不将文件重命名为扩展名的情况下,如何在 HTML 文件中执行 PHP 语句.php

4

2 回答 2

1

将此行添加到 apache conf 文件或 .htaccess 文件中,以便 php 可以执行 html 文件

 AddType application/x-httpd-php .html
于 2013-05-05T16:16:11.010 回答
0

一个简单的解决方案是使用 iframe

<div style="width: 280px; height 90px; float: left;margin-right: 10px; margin-bottom: 15px;" >
<iframe src="http://www.this-is-war.com/tiw/include/designs/TiWlog/sv/sv_01.php"></iframe>
</div>
于 2013-05-05T16:53:35.927 回答