To do this, you will be using PHP.
The pages that have the file in will also have to be PHP files.
It's quite simple - create a file called menu.php or navigation.php or whatever, and then in each page that you want the navigation bar in, type:
PHP Code:
<?php include('navigation.php'); ?>
Of course, if your menu was stored in a PHP file called menu.php, you'd type include('menu.php') etc.
Dan
EDIT: the guy above must have posted seconds before me - he's basically written the same as me. 
|