Hello all...
I am trying to create a document template, which is easily adaptable to allow insertion of pages quickly and easliy.
This template used to use javascript, and I am now trying to convert it to php.
One issue I have is that the page title eg <title>My Title</title> is used as the page title, but it is also displayed in <h1> tags on the top of the page too. Using javascript, this was easy... document.write("<h1>document.title</h1>");
Is there a way to do this with PHP, so that the end user is unaware that this text has been generated dynamically.
Many Thanks
Doug