How to include header in html

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • abhijeet1
    New Member
    • Jan 2012
    • 11

    How to include header in html

    I have tried to add header in html but the code which i have used to call is not working.
    Code is :
    <!..#include file=/header.html..>
    Please help me out to come of this problem.



    Calsoft
  • harshmaul
    Recognized Expert Contributor
    • Jul 2007
    • 490

    #2
    If you're asking how to include a file on the serverside using php, the below link will explain how to do it in detail.
    I've also included a simple example of how to do it.

    If you're asking for server side includes, this is the wrong forum, but i have also included how to do that below

    function.includ e

    <?php include 'header.html'; ?>

    <!--#include virtual="/header.html" -->

    Comment

    Working...