other_close.php
上传用户:m68239277
上传日期:2014-10-12
资源大小:824k
文件大小:2k
源码类别:

Web服务器

开发平台:

PHP

  1. <?php 
  2. /*
  3. ????:????????????,??????????????,??????????????,
  4. ????????????,???????????????????????????!
  5. ????!
  6. ????????,???????????????!
  7. */
  8. $sqlcs=mysql_query("select * from ptime where sign='4'",$conn);
  9. $all_close=mysql_result($sqlcs,0,"opstate");
  10. $other_close=mysql_result($sqlcs,0,"other");
  11. $hand=mysql_result($sqlcs,0,"hand");
  12. if($hand==1) echo "<script language='javascript'>window.location='close_plate.php'</script>";
  13. $sqlop=mysql_query("select * from ptime where now_sign='1'",$conn);
  14. $open_time=mysql_result($sqlop,0,"open_time");   //tnum
  15. $other_closes=mysql_result($sqlop,0,"other_close_time");   //znum
  16. $oltime=split(" ",$open_time);//open
  17. $oymd=split("-",$oltime[0]);
  18. $ohms=split(":",$oltime[1]);
  19. $olimit_times=mktime($ohms[0],$ohms[1],$ohms[2],$oymd[1],$oymd[2],$oymd[0]);  //设定时间
  20. $olimit_time=$olimit_times-time();
  21. if($olimit_time>=0)
  22. {
  23.  mysql_query("update ptime set opstate='1',tnum='1',other='1' where sign='4'",$conn);
  24.  echo "<script language='javascript'>window.location='close_plate.php'</script>";
  25.  }
  26. $ltime=split(" ",$other_closes);
  27. $ymd=split("-",$ltime[0]);
  28. $hms=split(":",$ltime[1]);
  29. $limit_times=mktime($hms[0],$hms[1],$hms[2],$ymd[1],$ymd[2],$ymd[0]);  //设定时间
  30. $limit_time=$limit_times-time();
  31. if($limit_time<=0)
  32. {
  33. mysql_query("update ptime set now_state='1' where dates='$dates'",$conn);
  34. mysql_query("update ptime set other='1' where sign='4'",$conn); //znum close
  35. }
  36. if($all_close==1)
  37. {
  38.  //mysql_query("update now_open set num1='',num2='',num3='',num4='',num5='',num6='',num7='' where ID='1'",$conn);
  39.  echo "<script language='javascript'>window.location='close_plate.php'</script>";
  40.  }
  41. if($other_close==1) echo "<script language='javascript'>window.location='close_plate.php'</script>";
  42. $sqlps=mysql_query("select * from online where user_account='$user' and vmsg='1'",$conn);
  43. ?>