battles/game.php

91 lines
2.7 KiB
PHP
Raw Normal View History

2018-03-22 19:32:48 +00:00
<?php
/**
* Copyright (c) 2018.
* Author: Igor Barkov <lopar.4ever@gmail.com>
* Project name: Battles-Game
*/
session_start();
if (!isset($_SESSION['uid'])) {
header("Location: index.php");
}
include("config.php");
$msg = filter_input(INPUT_POST,'msg');
$uid = $_SESSION['uid'];
if ($msg) db::c()->query('INSERT INTO `chat` (`cid`, `uid`, `msg`) VALUES (?i, ?i, "?s")', 1, $uid, $msg);
?>
<!doctype html>
<html>
<head>
<title>Окно игры</title>
<meta charset="utf-8">
<style>
header,
footer {
display: block;
margin: 5px;
padding: 2px;
border: 1px solid #eebb55;
border-radius: 7pt;
background: #ffeebb;
text-align: center;
}
form {
padding: 3px;
width: 100%;
}
form input {
border: 1px solid silver;
padding: 10px;
width: 80%;
margin-right: .5%;
}
form input[type="submit"] {
width: 15%;
padding: 10px;
}
2018-03-22 19:38:45 +00:00
.mainwrap {
2018-03-23 22:35:03 +00:00
width: 800px;
height: 600px;
2018-03-22 19:38:45 +00:00
}
.mainwrap iframe {
width: 100%;
height: 100%;
}
iframe {border: none;}
2018-03-22 19:32:48 +00:00
</style>
</head>
<body>
<header>
<a href="/user_anketa.php" title="Анкета" target="main"><img src="http://placehold.it/32x32/33ff33?text=A"/></a>
<a href="/friend.php" title="Друзья" target="main"><img src="http://placehold.it/32x32/33ff33?text=F"/></a>
<a href="/main.php?edit=1" title="Инвентарь" target="main"><img src="http://placehold.it/32x32/33ff33?text=I"/></a>
<a href="/relikt.php?edit=1" title="Реликты" target="main"><img src="http://placehold.it/32x32?text=R"/></a>
<a href="/klan.php" title="Клан" target="main"><img src="http://placehold.it/32x32/33ff33?text=K"/></a>
<a href="/orden.php" title="Особые умения" target="main"><img src="http://placehold.it/32x32/33ff33?text=O"/></a>
<a href="/moderators.php" title="Модераторы" target="main"><img src="http://placehold.it/32x32/33ff33?text=M"/></a>
<a href="/forum.php" title="Форум" target="main"><img src="http://placehold.it/32x32?text=F"/></a>
</header>
2018-03-22 19:38:45 +00:00
<div class="mainwrap">
<iframe name="main" src="main.php" width=100%></iframe>
</div>
2018-03-22 19:32:48 +00:00
<iframe name="chat" src="chat.php" width=100%></iframe>
<footer>
2018-03-23 22:03:54 +00:00
<form action="chat.php" method="post" target="chat">
2018-03-22 19:32:48 +00:00
<input id="msg" name="msg" size="100" placeholder="Введите сообщение...">
<input type="submit" value="Отправить">
</form>
</footer>
</body>
</html>