-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.php
40 lines (38 loc) · 1.75 KB
/
view.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php
session_start();
require_once('engine/engine.php');
$article = $_GET['page'];
$version = $_GET['id'];
$request = mysqli_query($link, "SELECT * FROM $article WHERE id='$version'");
$row = mysqli_fetch_assoc($request);
?>
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Wikicountries | Просмотр страницы <?php echo "«$article»"; ?></title>
<link rel="stylesheet" type="text/css" href="/lib/scripts/style.css">
<link rel="icon" type="image/x-icon" href="/lib/images/icon.png">
</head>
<body>
<?php show_menu(); ?>
<header class="top">
<?php
show_account_name();
show_account_links();
?>
</header> <br>
<div class="created_article">
<span class="aname"><?php echo "Просмотр версии $version страницы «{$article}»";?></span> <br>
<div class="article_management"><li><a href="edit.php?page=<?php echo $article; ?>">Изменить</a></li><li><a href="history.php?article=<?php echo $article; ?>">История</a></li></div><br><br><hr style="margin-top:30px">
<center>
<div class="reminder">
<?php echo "Вы читаете версию страницы, созданную {$row['date']}. Эта версия может значительно отличаться от <a href='$article.php'>последней версии</a> страницы";?>
</div> <br>
<?php
$code = file_get_contents("$articlesFolder{$row['code']}");
echo $code;
?>
</center>
</div>
</body>
</html>