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

Web服务器

开发平台:

PHP

  1. <?php 
  2. $names=$_SESSION["name"];
  3. $sql_count=mysql_query("select * from online ",$conn);
  4. $nowtimes=date("Y-m-d H:i:s");
  5. $h=date("YmdHis");
  6. while($rowct=mysql_fetch_array($sql_count))
  7. {
  8. $tcid=$rowct["ID"];
  9. $tctimes=$rowct["active_time"];
  10. $tctime=split(" ",$tctimes);
  11. $tcymd=split("-",$tctime[0]);
  12. $tchms=split(":",$tctime[1]);
  13. $tclimit_times=mktime($tchms[0],$tchms[1],$tchms[2],$tcymd[1],$tcymd[2],$tcymd[0]);
  14. $lowtime=time()-$tclimit_times."<br>";
  15. if($lowtime>1800) mysql_query("delete from online where ID='$tcid'",$conn);
  16. }
  17. $sqlhv=mysql_query("select * from online where user_account='$user'",$conn);
  18. $find_haves=mysql_num_rows($sqlhv);
  19. $ip=$_SERVER['REMOTE_ADDR'];
  20. if($find_haves==0) mysql_query("insert into online(user_type,user_name,user_account,ip,login_time,active_time)values('1','$names','$user','$ip','$h','$h')",$conn);
  21. $sqlps=mysql_query("select * from member where user_account='$user'",$conn);
  22. mysql_query("update online set active_time='$nowtimes' where user_account='$user'",$conn);
  23. if(mysql_result($sqlps,0,"online")==1)
  24. {
  25.   echo "<script language='javascript'>alert('对不起,您已被管理员请出网站!');window.location.href='exit.php';</script>";
  26. }
  27. ?>