Hi guys,
I have an almost static website - that is put together using php include statements.
I've been told by my host that the php code i'm using is causing memory problems (although i didnt even think "include" would use that much memory)
If my page looked like this:
<body>
<?php
include('header.php');
include('contents1.php');
include('footer.php');
?>
</body>
And the included files just contained html code, what is the best way to cache the complete page to stop the php code running each time?
Thanks for the help!
Cheers.