I basically have a php header like this
<body>
<h1>Title</h1>
</body>
That is contained in a header.php file, but when I'm on another page for example
<?php include(header.php) ?>
How would I make it so that you could change the h1 Title in the header.php on the destination webpage. I have tried putting in the h1 in the header, and then putting on the destination page, but this hasn't worked for me. Is there any way to simplify do this.