编程语言
首页 > 编程语言> > 在我的页面的一部分与Php“无缓存”的方法?

在我的页面的一部分与Php“无缓存”的方法?

作者:互联网

我的网站页面上有一个表单.我有一个表格,提交表单中的回声,我想不缓存,因为当你输入表单时,缓存版本显示,而不是更新.有没有更好的方法来不缓存页面而不是元标记?

我现在使用的代码是

       <?php
       $query='select * from article order by `article`.`time` DESC LIMIT 10';
       $result=mysql_query($query); 
       echo '<table class="mytable" width="1000px" border="0">';
       while($row = mysql_fetch_array($result))
       {
    echo "<td><a href='".$row['url']."'>".$row['title']."</a> - ".$row['name']."</td><td>".$row['class']."</td></tr>";
}
echo '<table>';
       ?>

解决方法:

<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); // Date in the past
?>

http://php.net/manual/en/function.header.php

标签:php,browser-cache,forms
来源: https://codeday.me/bug/20190630/1331560.html