简体   繁体   中英

Fixed Sidebar for Navigation in Website

I want to have a sidebar in my website with navigation in it. I will use script like phpBB etc. but I want sidebar to be displayed on every page.

So I am thinking about making a Sidebar in HTML and then using frame tag for displaying other pages/scripts.

But as Frames are getting obsolute, Is there any other method to display a sidebar in everypage without using frames and without adding html coding on every page?

Put your HTML in a PHP file (or HTML if you want) with no or other tags aside from what you want to display, then put the following on each page you want to display the menu on:

<?php include ('page-name.php'); ?>

One line of code is all you need. If you make a change to the 'page-name.php' file, it updates on every page.

Cheers

This question was asked here and on Webmasters ; I answered it over there.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM