当我更新我网站上的一些文本并将其放入 mySQL 数据库时...网站刷新但不会将内容更新为数据库中的新内容,我不知道为什么,我已经删除了所有缓存等。 .
例如,我有页面说“Lorem ipsum”,并用我的表格更新它说“你好”..页面刷新但在我执行强制刷新之前不会更改“Lorem ipsum”..(shift + refresh ),并且我已经删除了我的 php 文档以及 .htaccess 中的所有缓存
我的 php 文档缓存删除
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
<meta http-equiv="pragma" content="no-cache" />
这里是检索
$select = mysql_query("SELECT * FROM `Filling` WHERE `group` = '$page'")or die(mysql_error());
$row = mysql_fetch_assoc($select);
echo "$row[text]";
?>
返回代码:
var back = document.referrer;
window.location.replace(back);
基本上,有些东西被切断了......我只是不知道如何让它正确更新,在此先感谢:)