Here's a basic PHP tag no one seems to use! Includes allow you to embed the source of another php page into one section of your main page. Like so.

Code:
<?php include("page_name_here.php") ?>
Code:
<?php require("page_name_here.php") ?>
Code:
<?php require_once("page_name_here.php");
Hope you enjoy!