14 lines
393 B
PHP
14 lines
393 B
PHP
<?php
|
|
// Start the session
|
|
session_start();
|
|
$webpath = preg_replace('/(admin\/|)[a-zA-Z0-9_-]+\.\S+$/', '', $_SERVER['PHP_SELF']);;
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>TJ Olympia - Tréninky</title>
|
|
<link rel="stylesheet" href="<?php echo $webpath; ?>-inc/style.css">
|