I am making a CMS software, and I need php to generate some pages, I would like for most of the content on the pages to be the same, so I was wondering was it possible to link the body
tag to a default html page. For example to have a html page with <body> <h1> Hello </h1> </body>
and for all the pages that php generate to have that content. I did some searching and found only one question like this but it did not have a very detailed answer, and I tried creating a html page(for example called page.html) with something like <body> <h1> Hello </h1> </body>
and make php generate a body using <body src="page.html"></body
but with no luck.
Thanks in advanced