Чат на коленке
This commit is contained in:
37
chat.php
Normal file
37
chat.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright (c) 2018.
|
||||
* Author: Igor Barkov <lopar.4ever@gmail.com>
|
||||
* Project name: Battles-Game
|
||||
*/
|
||||
|
||||
session_start();
|
||||
if ($_SESSION['uid'] == null) {
|
||||
header("Location: index.php");
|
||||
}
|
||||
include_once "config.php";
|
||||
include_once "functions.php";
|
||||
|
||||
$chat = db::c()->query('SELECT * FROM `chat` ORDER BY `id` DESC LIMIT 50');
|
||||
|
||||
while ($message = $chat->fetch_assoc()) {
|
||||
echo $message['msgdate'].": " . $message['msg'];
|
||||
}
|
||||
|
||||
$msg = filter_input(INPUT_POST, $_POST['msg']);
|
||||
$uid = filter_input(INPUT_SESSION, $_SESSION['uid']);
|
||||
|
||||
if ($msg) db::c()->query('INSERT INTO `chat` (`cid`, `uid`, `msg`) VALUES (?i, ?i, "?s")', 1, $uid, $msg);
|
||||
?>
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
</head>
|
||||
<body>
|
||||
<form action="chat.php" method="post">
|
||||
<input name="msg" size="100" placeholder="Введите сообщение...">
|
||||
<input type="submit">
|
||||
</form>
|
||||
</body>
|
||||
Reference in New Issue
Block a user