forked from kaattt/BazyDanych
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·68 lines (53 loc) · 1.7 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Przepisy siostry Katarzyny</title>
<link rel="stylesheet" href="fontello.css" />
<link rel="stylesheet" href="style.css" />
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Lato:400,700,900,400italic,700italic|Pacifico|Marck+Script|Crafty+Girls&subset=latin,latin-ext' rel='stylesheet' type='text/css' />
</head>
<body>
<div class="container">
<div class="header">
<a href="index.php"><h1>Przepisy siostry Katarzyny <i class="icon-birthday"></i></h1></a>
</div>
<div id="menu">
<ul class="menuList">
<li><a href="wyszukaj.php"><i class="icon-ok"></i>Wyszukaj przepis</a></li>
<li><a href="dodaj.php"><i class="icon-ok" ></i>Utwórz własny</a></li>
</ul>
</div>
<div id="main">
<img src="background.png">
<div class="title"></div>
<div class="tresc">
<h3>Witaj w e-książce kucharskiej, gdzie znajdziesz same najlepsze przepisy!</h3>
</div>
<div class="toplista">
<i class="icon-star-empty"></i> Toplista
<ul id="topPrzepisy">
<?php
$con='host=localhost dbname=przepisy user=kasia password=tajne';
$db=pg_connect($con) or die('Nie mozna nawiazac polaczenia: ' . pg_last_error());
$query = 'SELECT nazwa FROM przepisy limit 10 ';
$result = pg_query($query) or die('Nieprawidłowe zapytanie: ' . pg_last_error());
if(!$result or pg_num_rows($result)==0){
echo "Brak przepisu ";
} else {
while ($line = pg_fetch_row($result)) {
echo "<li>" .$line[0] . "</li> ";
}
}
pg_free_result($result);
// Zamknięcie połączenia
pg_close($db);
?>
</ul>
</div>
</div>
<div style="clear:both;"></div>
</div>
</body>
</html>