BUANAdotnet
Clone | Disabled
Manipulate header nya
Contoh kalau mau cache nya cuman 10 detik;
<?php
Header("Cache-Control: must-revalidate");
$offset = 10;
$ExpStr = "Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
Header($ExpStr);
?>
Harus ditaruh sebelum output lain ya ... (header)
Contoh kalau mau cache nya cuman 10 detik;
<?php
Header("Cache-Control: must-revalidate");
$offset = 10;
$ExpStr = "Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT";
Header($ExpStr);
?>
Harus ditaruh sebelum output lain ya ... (header)