我有一个带有按钮的页面,打开一个弹出窗口,您可以在其中输入文本到输入字段,此数据可以发布然后它将数据保存在mysql数据库中。关闭弹出窗口后,我将调用一个php文件,从数据库中选择这些新添加的数据,然后将其附加到页面并从数据库中删除该行。再次执行此操作后,我看到旧数据,我在主页上也没有使用缓存,但没有用:
<?php
ini_set('display_errors', 'On'); // sometimes it's needed when overridden to Off
error_reporting(E_ALL);
header("Cache-Control: no-cache, no-store, must-revalidate"); // HTTP 1.1.
header("Pragma: no-cache"); // HTTP 1.0.
header("Expires: 0"); // Proxies.
session_start();
$_SESSION['loggedInToProcurement'] = 'yes';
$uniquekey = "1337";
?>
<html>
<head>
<title></title>
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<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" />