-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
67 lines (54 loc) · 1.84 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
67
<!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">
<title>Document</title>
<link href="style.css?version=51" rel="stylesheet" type="text/css"media="screen" ></link>
</head>
<body>
<container class="cont">
<?php
//Ten kod wypisuje nazwę użytkownika i przekierowuje na stronę logowania, jeżeli nikt nie jest zalogowany.
if((isset($_COOKIE["user"])) && $_COOKIE["user"] != ""){
echo "<p class=\"h2 \">Użytkownik: ".$_COOKIE["user"]."<form action=\"\" method=\"POST\"></p><input type='submit' class=\"sub\" name='logout' value='Wyloguj się'> </input>";
}
else{
echo "<a href=\"login.php\">Zaloguj się</a>";
}
?>
</form><?php
if(isset($_POST["logout"])){
unset($_COOKIE["user"]);
header("Location:login.php");
}
?>
<div class="articles">
<h1 class = "art">Artykuły</h1>
<div class="posts"><h2 >Posty</h2>
<?php
//zmienia nazwę na taką, która nadaje się do pliku.
function name_to_file($name){
$array1 = [' ',':','/'];
$array2 = ['_',"_",'_'];
return str_replace($array1,$array2,(strtolower($name)));
}
//Łączenie się z bazą danych bloga.
$db = mysqli_connect("localhost","root","","blog");
//Wybranie dzieł z bazy.
$query = mysqli_query($db,"SELECT * FROM posts");
//Wypisanie nazw wszystkich postów.
while($array = mysqli_fetch_array($query)){
$query_row2 = mysqli_fetch_row(mysqli_query($db,"SELECT name from series where series.id = ".$array['series_id'].";"));
echo "<p><a href='".name_to_file($query_row2[0])."/".name_to_file($array['name']).".php'>".$array['name']."</a></p>";
}
//Zamknięcie bazy danych fetyszwersum.
mysqli_close($db);
?>
<div><a href="create.php">Utwórz nowe</a></div>
</div>
</container>
</div>
</body>
</html>