Home > Backend Development > PHP Tutorial > php中如何实现在线网友_PHP

php中如何实现在线网友_PHP

WBOY
Release: 2016-06-01 12:28:30
Original
1044 people have browsed it

P>

$time=getdate();

$tt=$time[year]*365*24*60+$time[mon]*30*24*60+$time[mday]*24*60+$time[hours]*60+$time[minutes];

if($userid!="guest"){

 

$SQLqq="UPDATE $USER_ATTR_TABLE SET time=$tt,status=1 WHERE userid='$userid'";

mysql_query($SQLqq);}

 

  $SQLq="SELECT status,userid,time FROM $USER_ATTR_TABLE WHERE status=1;";

  $resultq=mysql_query($SQLq) or die(mysql_error());

  $countq=mysql_numrows($resultq);

 

  for ($ii=0;$ii

 $rowq=mysql_fetch_Array($resultq);

       $useridq=$rowq[userid];

    $times=$rowq[time];

  

$ts=$tt-$times;

if($ts>=15)

{

$sqls="UPDATE $USER_ATTR_TABLE SET status=0 WHERE userid='$useridq'";

mysql_query($sqls);

}

 

 }

?>


我把代码写下来,剩下的就看你们自己的了:)

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template