Вход Регистрация
Файл: sys/system.chat.php
Строк: 26
<?php

    
class Chat {
        
        function 
GetMessageCount($db) {
            
$sql "SELECT * FROM chat";
            
$res $db->Query($sqlnull);
            
            return 
mysql_num_rows($res);
        }
        
        function 
GetChatMessages($db) {
            
$cnt $this->GetMessageCount($db);
            
            if(
$cnt == 0) {
                return 
0;
            }
            
            for(
$i 1$i $cnt 1$i++) {
                
$sql "SELECT * FROM chat WHERE id=$i";
                
$arr[$i] = $db->QueryAndFetch($sqlnull);
            }
            
            return 
$arr;
        }
        
        function 
SendChat($db$name$text) {
            
$sql "INSERT INTO `chat` (`author`, `text`, `date`, `id`) VALUES
(
$name, '$text', '" date("d:m:Y:H:i") . "', NULL)";
            
$db->Query($sqlnull);
        }
        
        function 
Clear($db) {
            
$sql "TRUNCATE chat";
            
$db->Query($sqlnull);
        }
        
    }

?>
Онлайн: 1
Реклама