I've a code that every time fill in a HTML file with a new content and this file is called on my website by ... but when I change the file content and then go to my page, the page shows the old content and not the new one. I just have 2 pages that I do that, the others are all statics.
How can I just have a "non-cache" for those 2 files?
My code its just like this:
<?php
$fp = fopen('file.html', 'w');
fwrite($fp, $content);
fclose($fp);
?>
and on another file.php I have
<html>
<head>...</head>
<body>
<some html>
<?php include(file.html); ?>
<some html>
</body>
</html>
thanks,