du31992 2013-03-02 04:47 采纳率: 0%
浏览 52
已采纳

如何在不影响搜索数据的情况下在同一页面中设置和销毁cookie?

I am trying to search data and display data in same page with help of cookies.it is work fine but when i try to destroy cookies,the result data is loss and no searching happen.i also use pagination. when i click on another page no. in pagination,same the result data is lost.this is only happen when i destroy the cookies. and if i not destroy the cookies the data is continue display even i press enter in url.
php code:

   $depart_type=''; 
   if(isset($_COOKIE['depart_type']))
      {
        $depart_type = $_COOKIE['depart_type'];
      }   
    if($_POST['department_type']!='')
      {
        $depart_type = $_POST['department_type'];
        setcookie("depart_type",$depart_type,time()+3600,"/"); 
     }       
     $whr ="1";
    if($depart_type!="")
    {
        $whr .= "  AND `department_type` = '$depart_type'";
     } 
       $QryStaff = mysql_query("select * from `tbl_staff` where $whr) or die(mysql_error());    

so, problem is when and where i destroy or unset cookies?

  • 写回答

1条回答 默认 最新

  • drau89457 2013-03-02 05:57
    关注

    I have a suggestion. You should make one button. And on the click event of that button, clear the cookies. Not a professional solution, though it will definitely work..

    Hope it helps.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测