Quote:
Originally Posted by JSRooky
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.