Home > Backend Development > PHP Tutorial > 用PHP和ACCESS写聊天室(六)

用PHP和ACCESS写聊天室(六)

WBOY
Release: 2016-06-01 14:31:14
Original
976 people have browsed it
leave.php3 :
  $ConnID=@odbc_connect("jtfcht","admin","");
  if ($ConnID){
    if (!($id=="1" && $ps="superldz")){
      $result=@odbc_exec($ConnID,"SELECT UserName,PassWord,RoomID,Sex FROM User WHERE UserID=".$id);
      if (@odbc_fetch_into($result,0,&$rArr)){
        if ($rArr[1]==$ps)
          if ($rArr[3])
            @odbc_exec($ConnID,"INSERT INTO ChtCont (sIDFrom, sNameFrom, sipFrom, sIDTo, sNameTo, sTime, sCont, bSecret, RoomID) VALUES (".$id.", '".$rArr[0]."', '".getenv("REMOTE_ADDR")."', 0, '大家', '".date("H:i:s")."', '【系统消息】".$rArr[0]."离开了这个聊天室', False, ".$rArr[2].")");
          else
            @odbc_exec($ConnID,"INSERT INTO ChtCont (sIDFrom, sNameFrom, sIPFrom, sIDTo, sNameTo, sTime, sCont, bSecret, RoomID) VALUES (".$id.", '".$rArr[0]."', '".getenv("REMOTE_ADDR")."', 0, '大家', '".date("H:i:s")."', '【系统消息】".$rArr[0]."离开了这个聊天室', False, ".$rArr[2].")");
      }
      @odbc_exec($ConnID,"UPDATE User SET RoomID=0,ToID=0,ToName='',Secret=False,FirstTime=False,LstTime=0,LastLoc=0 WHERE UserID=".$id);
    }
    @odbc_close($ConnID);
  }
  header("Location: .");
?>
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