我对我网站的所有页面都有相同的菜单。我想把它包含在所有的页面与。php文件我用MAMP PRO创建了一个假domani,以便在本地MAC上试用。
我创建了index.html和其他页面:
<html>
<header>
<title>Inclusion test</title>
</header>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pippo.html">Pippo</a></li>
<li><a href="pluto.html">Pluto</a></li>
</ul>
<h1>Welcome on Disneyland!</h1>
</body>
</html>
我创建了这个php文件:
<?php
echo "<a href="index.html">Home</a>";
"<a href="pippo.html">Pippo</a>";
"<a href="pluto.html">Pluto</a>";
?>
在我将它包含在index.html之后,使用以下行规则:
<?php include 'menu.php';?>
怎么了?
更改index.html
的扩展名为index.php
。HTML文件不知道如何执行PHP代码。
<?PHP include('menu.php'); ?>
是一个PHP语句,但对HTML文件,它只是一个句子(文本)