
Patch 5.2.2 was released for ADBZRPG5 on 8/17/08. You may see a full list of changes here.
|
|
What It Does:
The Php include is used to edit content that will show up on multiple pages instead of having to edit every
single page of your site when you make a change. I personally use this for the links on my navbar because if I add a link
then I only have to add it once instead of multiple times. It is a time-saver and something that you really need to implement onto any site.
The Code:
First, rename all of your pages to end in .php except for the page in which you are recalling your content. For example "menu.html"
is where I keep my navbar.
Next, add this line of code to any page you want the content to appear on where you want it to show up:
<?php require("menu.html"); ?>
Of course you can change "menu.html" to anything you want. On the "menu.html" page, put anything
you want to be included.
|
|
|