Jacek Kowalski
2017-08-28 bc710e890d99f522d4adb0fa9bff5b0504a5a036
commit | author | age
175a52 1 <?php
JK 2 if(!defined('TOP_SEND')) {
3     header('Content-type: text/html; charset=utf-8');
4     header('Pragma: no-cache');
5     header('Cache-control: private, no-cache, must-revalidate');
6 ?>
7 <!DOCTYPE html>
8 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl" lang="pl">
9 <head>
10 <title>System biblioteczny - <?php echo $title; ?></title>
11 <link rel="stylesheet" type="text/css" href="design/style.css" />
12 </head>
13 <body>
14
15 <h1> System biblioteczny </h1>
16
17 <ul id="menu">
388202 18 <li><a href="index.php">Wyszukiwanie</a></li>
JK 19 <li><a href="list_all.php">Pełna lista książek</a></li>
175a52 20 </ul>
JK 21
22 <h2> <?php echo $title; ?> </h2>
23
24 <?php
25     define('TOP_SEND', TRUE);
26 }
27 ?>