welcomewiki has just posted in the PHP Forum forum of Wiki Newforum under the title of PHP Include File.
This thread is located at http://www.wikinewforum.com/showthread.php?t=5863
Here is the message that has just been posted:
***************
*_Example 1_*
Assume that you have a standard header file, called "header.php". To include the header file in a page, use the include() function, like this:
<html>
<body> <?php include("header.php"); ?> <h1>Welcome to my home page</h1> <p>Some text</p> </body>
</html>
***************