如何加载页眉和页脚

如何加载页眉和页脚

本文介绍了如何加载页眉和页脚.html dynamicaly的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

但它不起作用。



任何人都可以帮助我?



谢谢。

解决方案

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



 <?php include(/ root / path / to / layout / header。 HTML); ?> 


I am trying to include a header and footer dynamically with an url like this:

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

but it doesn't work.

Anybody can help me ?

Thanks you.

解决方案

include() expects a physical path on the file server, not a URL.

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

这篇关于如何加载页眉和页脚.html dynamicaly的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 07:48