A while ago I had a great solution using dynamic title and meta tags, but for the life of me I can't remember how to do it.
My page structure goes something like this:
index.php
include('header.php");
body
include('footer.php');
In the header file I used to have include('meta.php'); which contained the info I needed to populate the title and meta tags. The were all page specific for example:
$meta['title'] = "this is my home page"; only displayed when index.php is active
$meta['title'] = "this is the second page"; only displayed when second.php is active
and the same with the keywords.....
Does anyone have any ideas, solutions or know exactly what im getting at?
Thanks in advance