I'm sure this is a novice problem but I can't figure it out..
I currently used one php file (index2.php) to call the content into the body of the layout using this php include
<?php if (isset($_GET['id'])) { if (file_exists($_GET['id'] . '.txt')) { include $_GET['id'] . '.txt'; } } ?>
my question is that within the content how do I give those pages (about us, testimonials, tax services, etc.) there own titles instead of it defaulting to the index2.php title? I'm trying to be SEO friendly and I know having the same title on every page isn't going to help my cause. Thanks in advance for your assistance.
I currently used one php file (index2.php) to call the content into the body of the layout using this php include
my question is that within the content how do I give those pages (about us, testimonials, tax services, etc.) there own titles instead of it defaulting to the index2.php title? I'm trying to be SEO friendly and I know having the same title on every page isn't going to help my cause. Thanks in advance for your assistance.