Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.02 KB | None | 0 0
  1. <?php
  2.     if(!isset($_SESSION["id"])){
  3.         session_start();
  4.         $_SESSION["id"] = -1;
  5.     }
  6. ?>
  7. <?php echo "<?xml version=\"1.0\" encoding=\"utf-8\"?>"; ?>
  8. <!DOCTYPE html>
  9. <html>
  10.     <head>
  11.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12.         <title>FBC Litvínov</title>
  13.         <link rel="stylesheet" type="text/css" href="css/css.css">
  14.     </head>
  15.     <body>
  16.         <div class="centrovani">
  17.            
  18.             <div class="hlavicka"><img src="images/hlavicka.jpg"/></div><a name=nahoru></a>
  19.            
  20.             <hr/>
  21.            
  22.             <?php
  23.                 include("menu.php");
  24.             ?>
  25.            
  26.             <?php
  27.                 if(file_exists($param)){
  28.                     include($param);
  29.                 } else{
  30.                     echo "Stránku nelze nalézt";
  31.                 }
  32.                
  33.             ?>
  34.            
  35.             <?php
  36.                 include("paticka.php");
  37.             ?>
  38.         </div>
  39.     </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement