<html>
<?require('header.html');?>
<!-- page content -->
<p>Welcome to the home of TLA Consulting.
Please take some time to get to know us.</p>
<p>We specialize in serving your business needs
and hope to hear from you soon.</p>
<?php
require('footer.html');
?>
</html>
这是我的代码,当我在浏览器中打开它时,它无法显示标题。 我发现许多在线方式仍然无法解决问题。
答案 0 :(得分:0)
你错过了<?php
。它应该是这样的:
<?php require('header.html');?>
并确保您的网页扩展名为.php
答案 1 :(得分:0)
如果您使用heade.html
和footer.html
文件包含在.html
文件中,那么它无效
因为html
页面不支持php
代码,因此将您的网页保存在.html
至.php
并再次运行
并且还要改变
<?require('header.html');?>
至<?php require('header.html'); ?>