I have seperated header.php footer.php etc and now want to dynamically change the page title.
I attempted several options.
Putting this code in the Home.php:
<?php include "http://www.jehangirlar ry.com/includes/header.php";
$title = "Jehangir Larry";
?>
And this in the header.php:
<title><? echo $title; ?></title>
...produced no results. What should I do to get a unique title on each page?
Thanks in advance.
I attempted several options.
Putting this code in the Home.php:
<?php include "http://www.jehangirlar ry.com/includes/header.php";
$title = "Jehangir Larry";
?>
And this in the header.php:
<title><? echo $title; ?></title>
...produced no results. What should I do to get a unique title on each page?
Thanks in advance.
Comment