<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Cache-Control" content="No-cache">

解决方案 »

  1.   

    一个问题要那么久不能解决,就算加了
    <meta http-equiv="Content-Language" content="zh-cn">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Cache-Control" content="No-cache">
    还是不行,但一看数据库的确更新了数据的,真是不明的,是不是跟<iframe>有关
      

  2.   

    在刷新当前页,用windows.location(好像是:))
      

  3.   

    同意maxid() ,实际上是变了的,但是不刷新页面,就会一直残留者着之前的内容,真是困扰
      

  4.   

    我明白了,你是不是也用了session啊?
      

  5.   

    是session的问题~
    我解决了~哈哈~
    在session_start();前加上这个
    session_cache_limiter('private, must-revalidate');
    就行了~
    不要使用session_cache_limiter('public');和session_cache_limiter('private');(这两个可能有其它用途~)
      

  6.   

    就是这样
    session_cache_limiter('private, must-revalidate');
    session_start();
    $username = "OK La~~~~";
    session_register('username');
    为安全起见,我测试了一个晚上,才贴出来了~~
      

  7.   

    header("Cache-Control: no-store, no-cache, must-revalidate");
    header("Cache-Control: post-check=0, pre-check=0", false);
      

  8.   

    我没有用session,但是不知道是什么原因,有的也面没有残留,有的就残留上次的内容.
      

  9.   

    header("Expires: Mon, 26 Jul 2002 05:00:00 GMT");    // Date in the past
    header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); 
    header("Cache-Control: no-store, no-cache, must-revalidate");  // HTTP/1.1
    header("Cache-Control: post-check=0, pre-check=0", false);
    header("Pragma: no-cache");                          // HTTP/1.0
      

  10.   

    hodat(华帝),上面第一行是什么时间?结束时间吗?还是其他什么
      

  11.   

    hodat(华帝),上面第一行是什么时间?结束时间吗?还是其他什么