我无法包含其他html文件,也没有显示标题

时间:2017-11-13 12:03:57

标签: html

<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>

这是我的代码,当我在浏览器中打开它时,它无法显示标题。 我发现许多在线方式仍然无法解决问题。

2 个答案:

答案 0 :(得分:0)

你错过了<?php。它应该是这样的:

<?php require('header.html');?>

并确保您的网页扩展名为.php

答案 1 :(得分:0)

如果您使用heade.htmlfooter.html文件包含在.html文件中,那么它无效

因为html页面不支持php代码,因此将您的网页保存在.html.php并再次运行

并且还要改变

<?require('header.html');?><?php require('header.html'); ?>