ok edit the title tags in your pageheader.php file to this:
HTML Code:
<title>
<?php if (defined ('TITLE'))
{
print TITLE;
}
else
{ print 'YourSite.com';
}?>
</title>
and then on your index.php page put this at the top:
PHP Code:
<?php
define ('TITLE', "YourSite.com - Homepage");
include_once("pageheader.php");
?>
and then on your about_us.php (for example) page put this at the top:
PHP Code:
<?php
define ('TITLE', "YourSite.com - About Us");
include_once("pageheader.php");
?>
If you fail to define a title for a page, the default title of "YourSite.com" will be used for the title tags.
Hope it helps.
Bookmarks