How do I make this footer stretch?

When you say my MAIN TEMPLATE PAGE are you saying I should have a page that holds both the footer and header, then load content in the middle?


//main page
<body>
<?php include("menu.php"); ?>
// CONTENT AREA
<?php include("footer.php"); ?>
</body>
//end of main page

More or less but with your doctype and head content (css files and scripts) in place of course:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<!-- the css files and scripts should be here -->
</head>
<body>

<?php include("menu.php"); ?>

<!-- content goes here -->

<?php include("footer.php"); ?>
</body>
</html>