如何动态加载页眉和页脚.html

时间:2015-02-16 22:32:29

标签: php header include footer

我正在尝试使用这样的网址动态地包含页眉和页脚:

<?php include("http://www.monsite.com/layout/header.html"); ?>

但它不起作用。

任何人都可以帮助我?

谢谢你。

2 个答案:

答案 0 :(得分:3)

include()需要文件服务器上的物理路径,而不是URL。

  

根据给定的文件路径包含文件,如果没有给出,则指定include_path。如果在include_path中找不到该文件,include将最终在失败前检入调用脚本自己的目录和当前工作目录。

<?php include("/root/path/to/layout/header.html"); ?>

答案 1 :(得分:0)

确保你在include函数中添加的路径是正确的。我认为你在头文件的路径中做错了。

<?php include("root/path/layout/header.html"); ?>