-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
61 lines (51 loc) · 2.24 KB
/
index.php
File metadata and controls
61 lines (51 loc) · 2.24 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Italija</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<?php
include 'header.php';
?>
<link rel="stylesheet" href="styles.css">
</head>
<body id="page-top" class="bg-light">
<br id="tp">
<?php
if (isset($_GET['vieta'])) {
$Sid = $_GET['vieta'];
str($Sid);
include 'vietos.php';
}
if (isset($_GET['restoranas'])) {
$Rid = $_GET['restoranas'];
res($Rid);
}
if (isset($_GET['link'])) {
if ($_GET['link'] == 'vietos') {
include 'vietos.php';
} elseif ($_GET['link'] == 'restoranai') {
include 'restoranai.php';
} elseif ($_GET['link'] == 'lietuva') {
include 'lietuva.php';
}else if($_GET['link'] == 'signup'){
include 'signup.php';
}else if($_GET['link'] == 'admin'){
include 'admin.php';
}
} else if(!isset($_GET['vieta']) && !isset($_GET['restoranas'])){
include 'info.php';
}
?>
<footer class="py-5 bg-dark mt-5">
<div class="col-2" style="color: white; float:right;">
<p>Parengė Linas Baužys</p>
</div>
</footer>
</body>
</html>