我的php页面将在Dreamweaver预览中显示我的html标题,但不会在浏览器中显示

时间:2015-05-29 16:38:57

标签: php html include preview

我的php文件中的包含代码片段如下所示。

<div id="header">
  <!--#include virtual="includes/frontpage_header.html" -->
</div>

我的frontpage_header.html代码看起来像这样。

<div style="float: left; width: 30%;"><a href="../index_new.php"><img id="headerlogo" src="../images/DynamicHomes45th.png" alt="Dynamic Homes Logo"/></a>
</div>
<div style="float: left; width: 33%;">
<h1>QUALITY CUSTOM BUILT HOMES</h1>
</div>
<div style="float: right; width: 33%;">
<div id="headernav">
  <div id="whybuild">
    <h2>WHY BUILD DYNAMIC</h2>
    <img src="../images/whybuildicon.png" alt=""/> </div>
  <div id="gallery">
    <h2>GALLERY</h2>
    <img src="../images/galleryicon.png" width="43" height="43" alt=""/>
    </div>
</div>
</div>

正如我在标题中所说,它将显示在我的Dreamweaver的设计视图中,但不会显示在浏览器中。我不确定是什么错误。

1 个答案:

答案 0 :(得分:0)

尝试使用Php包含它:

<div id="header">
    <?php include("includes/frontpage_header.html"); ?>
</div>

考虑到你在项目的其他地方使用Php,这个frontpage_header文件是值得的.php而不是.html。