-
Notifications
You must be signed in to change notification settings - Fork 0
/
Etkinlik.php
35 lines (32 loc) · 1.11 KB
/
Etkinlik.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
<?php
include 'db_baglan.php';
class Etkinlik {
public static function etkinlikListele($kategori_id) {
global $conn;
$sql = "SELECT * FROM etkinlik WHERE category_id = '$kategori_id'";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
echo "<table class='table'>
<thead>
<tr>
<th>Başlık</th>
<th>Tarih</th>
<th>Yer</th>
</tr>
</thead>
<tbody>";
// Veritabanından gelen her bir etkinlik için bir tablo satırı oluştur
while($row = $result->fetch_assoc()) {
echo "<tr>
<td>" . $row["title"]. "</td>
<td>" . $row["date"]. "</td>
<td>" . $row["location"]. "</td>
</tr>";
}
echo "</tbody></table>";
} else {
echo "Henüz etkinlik bulunmamaktadır.";
}
}
}
?>