if you're including the header info in the way Len suggested, you may want to add the php indicated in colour below - all this does is allow you to have distinct page titles - always a good thing.
header.php
PHP Code:
<!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" lang="en" xml:lang="en">
<head>
<?php
echo "<title>";
echo $page_title;
echo "</title>"
?>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="author" content="">
<meta name="description" content="">
<meta name="keywords" content="">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="favicon.ico">
</head>
<body>
<h1></h1>
<a href="index.php">| Home |</a>
<a href="page_two.php">| Page Two |</a>
<a href="contact.php">| Contact Me |</a>
<hr><br /><br />
Put this into all pages that require the header.
PHP Code:
<?php
$page_title = "My website - Home";
include "header.php";
?>
Kind regards,
Gary