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

Web服务器

开发平台:

PHP

  1. <?php 
  2. $sqlcs=mysql_query("select * from ptime where sign='4'",$conn);
  3. $all_close=mysql_result($sqlcs,0,"opstate");
  4. $tnum_close=mysql_result($sqlcs,0,"tnum");
  5. $hand=mysql_result($sqlcs,0,"hand");
  6. if ($hand==1) echo "<script language='javascript'>window.location='close_plate.php'</script>";
  7. $sqlop=mysql_query("select * from ptime where now_sign='1'",$conn);
  8. $open_time=mysql_result($sqlop,0,"open_time");   //tnum
  9. $tnum_closes=mysql_result($sqlop,0,"tnum_close_time");   //tnum
  10. $ltime=split(" ",$tnum_closes);//tnum
  11. $ymd=split("-",$ltime[0]);
  12. $hms=split(":",$ltime[1]);
  13. $limit_times=mktime($hms[0],$hms[1],$hms[2],$ymd[1],$ymd[2],$ymd[0]);  //设定时间
  14. $limit_time=$limit_times-time();
  15. $oltime=split(" ",$open_time);//open
  16. $oymd=split("-",$oltime[0]);
  17. $ohms=split(":",$oltime[1]);
  18. $olimit_times=mktime($ohms[0],$ohms[1],$ohms[2],$oymd[1],$oymd[2],$oymd[0]);  //设定时间
  19. $olimit_time=$olimit_times-time();
  20. if($olimit_time>=0)
  21. {
  22.  mysql_query("update ptime set opstate='1',tnum='1',other='1' where sign='4'",$conn);
  23.  echo "<script language='javascript'>window.location='close_plate.php'</script>";
  24. }
  25. if($limit_time<=0)
  26. {
  27. $sqlcl=mysql_query("update ptime set tnum='1',opstate='1',other='1' where sign='4'",$conn);   //tnum close
  28. }
  29. if($all_close==1) echo "<script language='javascript'>window.location='close_plate.php'</script>";
  30. if($tnum_close==1) echo "<script language='javascript'>window.location='close_plate.php'</script>";
  31. ?>