josef Posted April 3, 2012 Report Share Posted April 3, 2012 Pessoal, como insiro esta função/comando php, em uma página html?:<?php function clear_Browser_Cache() { header("Pragma: no-cache"); header("Cache: no-cache"); header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1996 01:00:00 GMT"); } clear_Browser_Cache(); //chama a função que criou. ?>para limpar o cache do navegador IE.Grato mesmo :blush: Quote Link to comment Share on other sites More sharing options...
0 blew Posted April 3, 2012 Report Share Posted April 3, 2012 abre o código php no lugar que quiser e digite clear_Browser_Cache(); e dps feche<?phpclear_Browser_Cache();?> Quote Link to comment Share on other sites More sharing options...
0 Willian Gustavo Veiga Posted April 3, 2012 Report Share Posted April 3, 2012 (edited) Não esqueça de chamar esta função no começo do seu código. Se você não fizer isso vai encontrar aquele velho problema.. Headers devem ser enviados antes de qualquer saída.Um abraço. Edited April 3, 2012 by Willian Gustavo Veiga Quote Link to comment Share on other sites More sharing options...
0 jissa Posted April 3, 2012 Report Share Posted April 3, 2012 e para usar isto tem que renomear a pagina para php com html não vai rolar Quote Link to comment Share on other sites More sharing options...
Question
josef
Pessoal, como insiro esta função/comando php, em uma página html?:
<?php
function clear_Browser_Cache()
{
header("Pragma: no-cache");
header("Cache: no-cache");
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1996 01:00:00 GMT");
}
clear_Browser_Cache(); //chama a função que criou.
?>
para limpar o cache do navegador IE.
Grato mesmo :blush:
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.