-
Notifications
You must be signed in to change notification settings - Fork 128
/
biuro.php
67 lines (64 loc) · 1.69 KB
/
biuro.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<title>Poznaj Europę</title>
<link rel="stylesheet" href="styl9.css">
</head>
<body>
<header>
<h1>BIURO PODRÓŻY</h1>
</header>
<main>
<section id="left">
<h2>Promocje</h2>
<table>
<tr>
<td>Warszawa</td>
<td>od 600 zł</td>
</tr>
<tr>
<td>Wenecja</td>
<td>od 1200 zł</td>
</tr>
<tr>
<td>Paryż</td>
<td>od 1200 zł</td>
</tr>
</table>
</section>
<section id="mid">
<h2>W tym roku jedziemy do...</h2>
<?php
$con = mysqli_connect('localhost', 'root', '', 'podroze');
$q = "SELECT nazwaPliku, podpis FROM zdjecia ORDER BY podpis ASC;";
$res = mysqli_query($con, $q);
while ($row = mysqli_fetch_array($res)) {
echo "<img src='$row[0]' alt='$row[1]' title='$row[1]'>";
}
?>
</section>
<section id="right">
<h2>Kontakt</h2>
<a href="mailto:[email protected]">napisz do nas</a>
<p>telefon: 444555666</p>
</section>
</main>
<section id="dane">
<h3>W poprzednich latach byliśmy...</h3>
<ol>
<?php
$q = "SELECT cel, dataWyjazdu FROM wycieczki WHERE dostepna = 0;";
$res = mysqli_query($con, $q);
while ($row = mysqli_fetch_array($res)) {
echo "<li>Dnia $row[1] pojechaliśmy do $row[0]</li>";
}
mysqli_close($con);
?>
</ol>
</section>
<footer>
<p>Stronę wykonał: Chriskyy</p>
</footer>
</body>
</html>