<?php while ($row = mysql_fetch_assoc($result)): ?>
<h1><?= $row['title'] ?></h1>
<p><?= $row['text'] ?><p>
<p>Дата публикации: <?= $row['date'] ?></p><p><?= $row['time'] ?></p>
<p>Автор: <?= $row['author'] ?>
<?php endwhile ?>
я сам знаю то что ошибка в чемВ золотой фонд.
img {
display: block;
max-width: 90%;
max-height: 90%;
margin: 0 auto;
}
div {
display: table-cell;
vertical-align: middle;
}
header("Content-Disposition: attachment; filename=file.txt");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: File Transfer");
header("Content-Length: " . strlen($data));
echo($data);