Forum Moderators: coopster
so your navbar.php might look like
<div>
your navbar contents (html/dhtml code)
</div>
If your navbar doesn't require any php functionality it's quite ok to name it as a html file. (i.e. navbar.html)
Now that you have your navbar on a seperate file all you have to do is to include it in the right place in all the pages (php) you want it to appear. Just replace the previous navbar divisions with the php include function.
<?
include("/path/to/file/navbar.php");
?>
If you have any problems, just post a part of your html code including the navbar division so that I could break it up for you.