ナビゲーション バーを持つ配偶者である .htm ファイルがあります。他の .htm ファイルにもこのバーが必要なので、php include 'nav_bar.php'; を配置します。(要素を使用しますが、機能しません。nav_bar.php は次のとおりです<?php echo ' (navigation html)';?>
。ブラウザ(クロム)は include コマンドを読み取らず、コメントとして配置するだけです。 ? 私が望むのは、1 つのソースから同じナビゲーション メニューを含むいくつかの .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...*/';?>`