Initial commit

This commit is contained in:
billz
2025-07-11 02:29:54 -07:00
parent 99cab5a06e
commit eee8575d3f

8
includes/bootstrap.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
// cache-control headers
if (!headers_sent()) {
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Pragma: no-cache");
header("Expires: 0");
}