A pretty useless example, but nevertheless should get you going:
header.php
<?php
print '<h1>Welcome to My Site</h1>';
print '<a href="index.php">Home</a>';
?>
footer.php
<?php
print '<p>Copyright © 2007 YourCompany, Inc.</p>';
?>
index.php
<?php
include('header.php');
print 'this is the main content area';
include('footer.php');
?>