我有一个 .htm 文件是配偶有一个导航栏。因为我在其他.htm 文件上也需要这个栏,所以我放了一个 php include 'nav_bar.php';(有元素,但它不起作用。nav_bar.php 是:<?php echo ' (navigation html)';?>
。问题是,浏览器(chrome)从来没有读取过 include 命令,它只是把它作为评论。所以我做错了什么? 我只想要几个 .html 页面来包含相同的导航菜单,来自一个来源(因此更容易更改所有菜单)。我该怎么做?
这是 main.html 代码(包含菜单的文件),下面是与菜单相呼应的 .php 文件。怎么了?(如果有问题,我正在使用 Microsoft Expression Web 4)
--main.html--
`<!DOCTYPE html >`
`<html>`
`<head>`
`//some code....`
`</head>`
`<body dir="rtl">`
`//some class I made in the style sheets.(its not important right now)`
`<div id="page" class="contaner1">`
`<div id="textErea" class="contaner2">`
`<?php include 'navMenu.php';?>`
`//some code...`
`</div></div>`
`</body>`
`</html>`
the .php file:
--navMenu.php--
`<?php echo '/*some html code...*/';?>`