View Single Post
Unread 10-31-2007, 11:05 AM
vinyl-junkie vinyl-junkie is offline
Moderator
Join Date: Aug 2007
Posts: 114
  #11  
Default

Quote:
Originally Posted by JSRooky View Post
Do i have to make all the menu changes on every page in my website or there's a dinamically way to do it only by making the change in one file and have all of my pages changed?
If your website supports PHP, you can use a PHP include statement on each page in the position where you want your menu to appear. For example:

Code:
<?php include("nav_menu.php"); ?>
Then nav_menu.php would contain your navigation menu HTML, with possibly some PHP code.

For more information about PHP include, look here and here.
__________________
Music Around The World - Collecting tips, trade
and want lists, album reviews, & more
SNAP to it!
Reply With Quote