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

Web服务器

开发平台:

PHP

  1. <?php 
  2. $sqlop=mysql_query("select * from ptime where now_sign='1'",$conn);
  3. $other_closes=mysql_result($sqlop,0,"other_close_time");   //znum
  4. $sqlcs=mysql_query("select * from ptime where sign='4'",$conn);
  5. $hand=mysql_result($sqlcs,0,"hand");
  6. if($hand==1) echo "<script language='javascript'>window.location='left_state.php'</script>";
  7. $ltime=split(" ",$other_closes);
  8. $ymd=split("-",$ltime[0]);
  9. $hms=split(":",$ltime[1]);
  10. $limit_times=mktime($hms[0],$hms[1],$hms[2],$ymd[1],$ymd[2],$ymd[0]);  //éè?¨ê±??
  11. $limit_time=$limit_times-time();
  12. if($limit_time<=0)
  13. {
  14. mysql_query("update ptime set now_state='1' where dates='$dates'",$conn);
  15. mysql_query("update ptime set other='1' where sign='4'",$conn); //znum close
  16. }
  17. $sqlcs=mysql_query("select * from ptime where sign='4'",$conn);
  18. $all_close=mysql_result($sqlcs,0,"opstate");
  19. $tnum_close=mysql_result($sqlcs,0,"tnum");
  20. $other_close=mysql_result($sqlcs,0,"other");
  21. if($all_close==1) echo "<script language='javascript'>window.location='left_state.php'</script>";
  22. if($other_close==1) echo "<script language='javascript'>window.location='left_state.php'</script>";
  23. ?>