Hi,
I'm creating a new website and I'm using the PHP include function with my header to reuse it on new pages.
My problem is, if I use it like this on new pages:
PHP Code:
<?php include("header.php"); ?>
then my title, meta description and meta keywords will be the same since those are fixed in the header.php file.
So when i create a new page using the include function, how can I use title and meta data that is relevant to that page? I want these data to be different on each page.
Thanks