and when I start to read about CSS my eyes glaze over and I start to lose the will to live.
looks like a typo to me, shouldn't that read
and when I start to read about CSS my eyes glaze over and I decide: I'm quite happy with what I've got, thank you !!
Seriously though:
In one sense it is as easy as I've explained it above.
The only catch is that the file that uses the includes needs to have the extension php rather than htm or html. The daft thing is, that the files are then read as HTML, which is why we have to keep embedding the php bits in <? .... ?> just so the program knows which bits realy are php !
Try it out on one of the pages you are linking to: (example: freds-biography)
- change the name of the file from freds-biography.htm to freds-biography.php
- change the link on your calling page to freds-biography.php
- create a simple HTML file with a few lines of text: textblock1.htm
- add some <? include textblock1.htm ?> at different places in freds-biograpy.php
- upload to your site (fred's biography, and the page with the calling link) and see if it works
(just tried it on mine and it did !)
Even simpler, don't change the page with the calling link, but just call
http://yourwebsitename/freds-biography.phpThen you only have one file to change.
Bob