1
|
<?php
|
2
|
session_start();
|
3
|
?>
|
4
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
5
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="cs">
|
6
|
<head>
|
7
|
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
|
8
|
<meta http-equiv="Content-Language" content="cs" />
|
9
|
<title>Administrace slovníku katedry blízkovýchoních studií</title>
|
10
|
<link rel="stylesheet" type="text/css" href="./css/kbs.css" />
|
11
|
|
12
|
</head>
|
13
|
<body onload="javascript:print()">
|
14
|
|
15
|
<!--h6>
|
16
|
Soubor generován <?php echo Date("d.m.Y");?> ze systému KBS ZČU v Plzni pro uživatele <?php echo $ses_name." ".$ses_surname; ?>.
|
17
|
</h6-->
|
18
|
<?php
|
19
|
require_once("./examination/article.php");
|
20
|
$article = get_article($_REQUEST['view_article']);
|
21
|
//print_r($article); ?>
|
22
|
|
23
|
<div class="articlecard">
|
24
|
<h2 class="arabic"> <?php echo $article["title"]?> </h2>
|
25
|
<p class="arabic"> <?php echo $article["body"]?></p>
|
26
|
<p> <b>zdroj:</b> <?php echo $article["source"]?></p>
|
27
|
<p> <b>lekce:</b> <?php echo $article["lection"]?></p>
|
28
|
</div>
|
29
|
|
30
|
|
31
|
</body>
|
32
|
</html>
|
33
|
|