On my site I am including a file (navigation.html) as an ssi include. It serves as the navigation bar at the top of all of my pages.

I have a php application that I would also like to have use this navigation bar also. The app has a header.tpl file, but I can't figure out how to include my navigation.html file in it.

Thanks for any help you can give!

    Well, that would be fine except I'm trying to INCLUDE the file - not just copy it.

    I want one place to make changes to the navigation and header of my entire site.

    I know this is do-able and would sure appreciate it if someone could point me in the right direction..

      Assuming it's being parsed in simple PHP....

      include('navigation.html');
        Write a Reply...