Here's
how it works: PHP4 is a Server Side Processing Language. This means
that when you activate a page written in PHP, a list of commands
is sent to a Processor which gathers the required information, assembles
an HTML document, then sends it to your browser. This gives you
the ability to access other files, documents, and databases to gather
and reference data to your page! One of these commands is called
an Include.
The
Include for this script looks like this:
<?php include ('http://www.YourSite.com/IntelliNav/intellinav.php');
?>
Copy
and paste the code above to your page where you want the menu to
appear. This tells the processor to get the info in the file intellinav.php
and include it in the page. Just change the filename and URL to
suit your needs. |