Файл: 100loto.best/otziv.php
Строк: 40
<?php
require_once ('inc/base.php');
require_once ('inc/head.php');
$array = [];
$file = __DIR__ . '/data.json';
if (file_exists($file)) {
$data = file_get_contents($file);
if (!empty($data)) {
$array = json_decode($data, true);
}
}
if (isset($_GET['delete'])) {
$key = (int)$_GET['delete'];
unset($array[$key]);
file_put_contents($file, json_encode($array));
header("Location: otziv");
exit;
}
if (!empty($_POST['text'])) {
$text = trim($_POST['text']);
if (!empty($text)) {
$array[] = $text;
file_put_contents($file, json_encode($array));
}
header("Location: otziv");
exit;
}
?>
<div class='content'>
<div class='gli'>Отзывы о нас</div>
<div class='gl-obv'>
<font color='white' size='2' face='Arial'> <b>Что думают о нас игроки</b></font><br/>
<form method="POST">
<div>
<textarea name="text" id="text" cols="35" rows="5"></textarea>
</div>
<center><button>Отправить</button></center>
</form>
<div>
<?php
if (isset($array) && count($array)):
foreach ($array AS $key => $item): ?>
<br><div class="obvodka"><div><span><?= htmlspecialchars($item) ?></span></div></div>
<?php endforeach;
endif;
?>
</div>
</div></div>
<div class="line"></div>
<div class="block">
<a class="link" href=""></a>
<a class="superlink" href="home"> Главная</a>
</div></div></div></div></body>
<?php
require_once ('inc/foot.php');
?>