Файл: sys/system.chat.php
Строк: 26
<?php
class Chat {
function GetMessageCount($db) {
$sql = "SELECT * FROM chat";
$res = $db->Query($sql, null);
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($sql, null);
}
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($sql, null);
}
function Clear($db) {
$sql = "TRUNCATE chat";
$db->Query($sql, null);
}
}
?>