PHP Includes!
You can insert the content of one PHP file into another PHP file before the server executes it, with the include() or require() function.
The two functions are identical in every way, except how they handle errors:
* include() generates a warning, but the script will continue execution
* require() generates a fatal error, and the script will stop
The include() function takes all the content in a specified file and includes it in the current file. If an error occurs, the include() function generates a warning, but the script will continue execution.
< ?php include("http://yoursite.com/yourfile.php"); ?>
make sure your pages are in .php for the desired result! [:
If you have any questions, Just email me at: greg@greggrind.com