-
Notifications
You must be signed in to change notification settings - Fork 0
/
yorumlar3.php
44 lines (41 loc) · 1.21 KB
/
yorumlar3.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
<?php
function veritabani_ayarlarini_yap(){
mysql_connect("localhost", "root", "") or die ("Veritabanına bağlanırken bir hata oluştu!" . mysql_error());
mysql_select_db("site") or die("Veritanında bir hata oluştu!" . mysql_error());
mysql_query("SET NAMES UTF8");
}
function urun_adi_al($urun_id){
$result = mysql_query("SELECT ad FROM urunler WHERE urunler.id=\"$urun_id\"");
$row = mysql_fetch_row($result);
return $row[0];
}
veritabani_ayarlarini_yap();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="bootstrap.min.css" rel="stylesheet">
<title>Ürün Yorumları</title>
</head>
<body>
<div class="container">
<?php
$urun_id = $_GET['id'];
$urun_adi = urun_adi_al($urun_id);
echo "<h1>$urun_adi</h1>";
?>
<table class="table table-striped">
<tr><th>No</th><th>Başlık</th><th>Yorum</th></tr>
<?php
$result = mysql_query("SELECT yorumlar.*, urunler.ad FROM yorumlar, urunler
WHERE yorumlar.urun = urunler.id AND urunler.id=\"$urun_id\"");
while($arr = mysql_fetch_array($result))
{
echo "<tr><td>{$arr['id']}</td><td>{$arr['baslik']}</td><td>{$arr['icerik']}</td></tr>";
}
?>
</table>
</div>
</body>
</html>