-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (42 loc) · 1.69 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
39
40
41
42
43
44
45
46
47
48
<?php
session_start();
$_SESSION['aktualna_strona'] = $_SERVER['REQUEST_URI'];
require_once "polaczenie.php";
try {
$polaczenie = new mysqli($host, $db_user, $db_password, $db_name);
if($polaczenie->connect_errno!=0){
throw new Exception(mysgli_connect_errno());
}
else{
$polaczenie->query("SET NAMES 'utf8' COLLATE 'utf8_polish_ci'");
$polaczenie->query("SET CHARSET utf8");
$rezultat_przepisy = $polaczenie->query('SELECT przepisy.id_przepisu, przepisy.tytul, przepisy.skrot_opis, przepisy.czas_przygotowania, przepisy.stopien_trudnosci, SUM(oceny.ocena) / COUNT(przepisy.id_przepisu) AS ocena_p FROM przepisy LEFT JOIN oceny ON przepisy.id_przepisu=oceny.id_przepisu GROUP BY przepisy.id_przepisu ORDER BY przepisy.id_przepisu DESC');
$polaczenie->close();
}
} catch (Exception $e) {
echo '<span style="color:red;">Błąd serwera przepraszamy na niedogodności</span>';
echo "Informacja developera: ".$e;
}
?>
<!DOCTYPE html>
<html lang="pl">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery.leanModal.min.js"></script>
<script type="text/javascript" src="skrypt.js"></script>
<meta charset="utf-8"/>
<title>Gotuj z Nami</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="stylesheet" type="text/css" href="css/fontello.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700i&subset=latin-ext" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css">
</head>
<body>
<div id="kontener">
<?php
require "naglowek.php";
require "wyswietlanie_przepisow.php";
?>
</div>
</body>
</html>