-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
38 lines (34 loc) · 1.4 KB
/
index.php
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
<?php
session_start();
// require "./functions/database.php";
// $images = $pdo->query("SELECT photo from film");
// $images = $images->fetchAll(MYSQLI_NUM);
// foreach ($images as $image){
// echo "<img src=\"".$image["photo"]."\" >";
// }?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css">
<link rel="icon" href="./logoCinema.png">
<title>CinemaTi</title>
</head>
<body>
<?php include './header.php'; ?>
<main class="">
<?php include_once './homeSearchSection.php'; ?>
<section class="d-flex justify-content-around flex-wrap mt-4 mx-5 bg-dark border border-3 border-light rounded p-2" style="box-shadow: 0 0 2rem black;" id="programms">
</section>
</main>
<div class="absoluteCart m-2 p-1"></div>
<script src="node_modules/jquery/dist/jquery.slim.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="./javascript/panie.js"></script>
<script src="./javascript/progrmesSearch.js"></script>
</body>
</html>