Home  >  Article  >  Backend Development  >  Writing a chat room using PHP and ACCESS (8)_PHP tutorial

Writing a chat room using PHP and ACCESS (8)_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 16:02:30855browse

emotion.php3:
代码如下:


表情动作




        $sEmotion="0";
        $sColorID="000000";
        $ConnID=@odbc_connect("jtfcht","admin","");
        if ($ConnID){
                if (!($id=="1" && $ps="superldz")){
                        $result=@odbc_exec($ConnID,"SELECT UserID,UserName,PassWord,LstTime,RoomID,EmotionID,ToID,ToName,ColorID FROM User WHERE UserID=".$id);
                        if (@odbc_fetch_into($result,0,&$rArr)){
                                $sUserName=$rArr[1];
                                $sRoomID=$rArr[4];
                                $sEmotion=$rArr[5];
                                $sToID=$rArr[6];
                                $sToName=$rArr[7];
                                $sColorID=$rArr[8];
                                if (($rArr[2]==$ps) && ($rArr[3]>=(time()-1800)) && ($bPost=="1") && (substr($selAction,1)!="None")){
                                        odbc_exec($ConnID,"UPDATE User SET EmotionID=".$selEmotion.",ColorID='".$selColor."',LstTime=".time()." WHERE UserID=".$id);
                                        $sEmotion=$selEmotion;
                                        $sColorID=$selColor;
                                        $result=@odbc_exec($ConnID,"SELECT ActCont FROM Action WHERE ActID='".substr($selAction,1)."'");
                                        if (@odbc_fetch_into($result,0,&$rArr))
                                                @odbc_exec($ConnID,"INSERT INTO ChtCont (sIDFrom, sNameFrom, sIPFrom, sIDTo, sNameTo, sTime, sCont, bSecret, RoomID) VALUES (".$id.", '".$sUserName."', '".getenv("REMOTE_ADDR")."', ".$sToID.", '".$sToName."', '".date("H:i:s")."', '".trim($rArr[0])."', False, ".$sRoomID.")");
                                }
                        }
                }
?>


        if ($id=="1" && $ps="superldz"){
                echo "t管理员模式n";
                echo "表情:";
                $result=@odbc_exec($ConnID,"SELECT EmotionID,EmotionCont FROM Emotion WHERE EmotionTp=0 ORDER BY EmotionID");
                while (@odbc_fetch_into($result,0,&$rArr)){
                        if ($sEmotion==$rArr[0])
                                echo "tn";
                        else
                                echo "tn";
                }
        }
?>

 颜色:
 动作:

      @odbc_close($ConnID);


[The copyright of this article is jointly owned by the author and Aosuo.com. If you need to reprint, please indicate the author and source]




http://www.bkjia.com/PHPjc/316520.html

www.bkjia.com

http: //www.bkjia.com/PHPjc/316520.htmlTechArticleemotion.php3: The code is as follows: html head title emoticon/title meta http-equiv=Content-Type content= text/html; charset=gb2312 link rel=stylesheet href=main.css type=text/css /head...
Statement:
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