-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhesabimyorumlar.php
160 lines (148 loc) · 8.87 KB
/
hesabimyorumlar.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
if (isset($_SESSION["Kullanici"])) {
$SayfalamaIcinSolVeSagButonSayisi = 2;
$SayfaBasinaGosterilecekKayitSayisi = 10;
$ToplamKayitSayisiSorgusu = $VeritabaniBaglantisi->prepare("SELECT * FROM yorumlar WHERE UyeId = ? ORDER BY YorumTarihi DESC");
$ToplamKayitSayisiSorgusu->execute([$KullaniciID]);
$ToplamKayitSayisiSorgusu = $ToplamKayitSayisiSorgusu->rowCount();
$SayfalamayaBaslanacakKayitSayisi = ($Sayfalama * $SayfaBasinaGosterilecekKayitSayisi) - $SayfaBasinaGosterilecekKayitSayisi;
$BulunanSayfaSayisi = ceil($ToplamKayitSayisiSorgusu / $SayfaBasinaGosterilecekKayitSayisi);
?>
<table width="1065" align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<hr/>
</td>
</tr>
<tr>
<td>
<table width="1065" align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="203"
style="border: 1px solid black; text-align: center; padding: 10px 0; font-weight: bold;"><a
href="index.php?SK=50" style="text-decoration: none; color: black;">Üyelik
Bilgileri</a></td>
<td width="10"> </td>
<td width="203"
style="border: 1px solid black; text-align: center; padding: 10px 0; font-weight: bold;"><a
href="index.php?SK=58" style="text-decoration: none; color: black;">Adresler</a>
</td>
<td width="10"> </td>
<td width="203"
style="border: 1px solid black; text-align: center; padding: 10px 0; font-weight: bold;"><a
href="index.php?SK=59" style="text-decoration: none; color: black;">Favoriler</a>
</td>
<td width="10"> </td>
<td width="203"
style="border: 1px solid black; text-align: center; padding: 10px 0; font-weight: bold;"><a
href="index.php?SK=60" style="text-decoration: none; color: black;">Yorumlar</a>
</td>
<td width="10"> </td>
<td width="203"
style="border: 1px solid black; text-align: center; padding: 10px 0; font-weight: bold;"><a
href="index.php?SK=61" style="text-decoration: none; color: black;">Siparişler</a>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<hr/>
</td>
</tr>
<tr>
<td width="1065" valign="top">
<table width="1065" align="center" border="0" cellpadding="0" cellspacing="0">
<tr height="40">
<td colspan="2" style="color:#FF9900"><h3>Hesabım > Yorumlar</h3></td>
</tr>
<tr height="30">
<td colspan="2" valign="top" style="border-bottom: 1px dashed #CCCCCC;">Tüm Yorumlarınızı Bu
Alandan Görüntüleyebilirsiniz.
</td>
</tr>
<tr height="50">
<td width="125" style="background: #f8ffa7; color: black;" align="left"> Puan</td>
<td width="75" style="background: #f8ffa7; color: black;" align="left">Yorum</td>
</tr>
<?php
$YorumlarSorgusu = $VeritabaniBaglantisi->prepare("SELECT * FROM yorumlar WHERE UyeId = ? ORDER BY YorumTarihi DESC LIMIT $SayfalamayaBaslanacakKayitSayisi, $SayfaBasinaGosterilecekKayitSayisi");
$YorumlarSorgusu->execute([$KullaniciID]);
$YorumlariSayisi = $YorumlarSorgusu->rowCount();
$YorumlariKayitlari = $YorumlarSorgusu->fetchAll(PDO::FETCH_ASSOC);
if ($YorumlariSayisi > 0) {
foreach ($YorumlariKayitlari as $Satirlar) {
$VerilenPuan = $Satirlar["Puan"];
if ($VerilenPuan == 1) {
$ResimDosyasi = "YildizBirDolu.png";
} elseif ($VerilenPuan == 2) {
$ResimDosyasi = "YildizIkiDolu.png";
} elseif ($VerilenPuan == 3) {
$ResimDosyasi = "YildizUcDolu.png";
} elseif ($VerilenPuan == 4) {
$ResimDosyasi = "YildizDortDolu.png";
} elseif ($VerilenPuan == 5) {
$ResimDosyasi = "YildizBesDolu.png";
}
?>
<tr>
<td width="85" align="left" style="border-bottom: 1px dashed #CCCCCC; padding: 15px 0px;" valign="top"><img src="Resimler/<?php echo $ResimDosyasi; ?>" border="0"></td>
<td width="980" align="left" style="border-bottom: 1px dashed #CCCCCC; padding: 15px 0px;" valign="top"><?php echo DonusumleriGeriDondur($Satirlar["YorumMetni"]); ?></td>
</tr>
<?php
} }
if ($BulunanSayfaSayisi > 1) {
?>
<tr height="50">
<td colspan="2" align="center">
<div class="SayfalamaAlaniKapsayicisi">
<div class="SayfalamaAlaniIciMetinAlaniKapsayicisi">
Toplam <?php echo $BulunanSayfaSayisi; ?>
sayfada, <?php echo $ToplamKayitSayisiSorgusu; ?> adet kayıt bulunmaktadır.
</div>
<div class="SayfalamaAlaniIciNumaraAlaniKapsayicisi">
<?php
if ($Sayfalama > 1) {
echo "<span class='SayfalamaPasif'><a href='index.php?SK=60&SYF=1'><<</a></span>";
$SayfalamaIcinSayfaDegeriniBirGeriAl = $Sayfalama - 1;
echo "<span class='SayfalamaPasif'><a href='index.php?SK=60&SYF=" . $SayfalamaIcinSayfaDegeriniBirGeriAl . "'><</a></span>";
}
for ($SayfalamaIcinSayfaIndexDegeri = $Sayfalama - $SayfalamaIcinSolVeSagButonSayisi; $SayfalamaIcinSayfaIndexDegeri <= $Sayfalama + $SayfalamaIcinSolVeSagButonSayisi; $SayfalamaIcinSayfaIndexDegeri++) {
if (($SayfalamaIcinSayfaIndexDegeri > 0) and ($SayfalamaIcinSayfaIndexDegeri <= $BulunanSayfaSayisi)) {
if ($Sayfalama == $SayfalamaIcinSayfaIndexDegeri) {
echo "<span class='SayfalamaAktif'>" . $SayfalamaIcinSayfaIndexDegeri . "</span>";
} else {
echo "<span class='SayfalamaPasif'><a href='index.php?SK=60&SYF=" . $SayfalamaIcinSayfaIndexDegeri . "'> " . $SayfalamaIcinSayfaIndexDegeri . "</a></span>";
}
}
}
if ($Sayfalama != $BulunanSayfaSayisi) {
$SayfalamaIcinSayfaDegeriniBirIleriAl = $Sayfalama + 1;
echo "<span class='SayfalamaPasif'><a href='index.php?SK=60&SYF=" . $SayfalamaIcinSayfaDegeriniBirIleriAl . "'>></a></span>";
echo "<span class='SayfalamaPasif'><a href='index.php?SK=60&SYF=" . $BulunanSayfaSayisi . "'>>></a></span>";
}
?>
</div>
</div>
</td>
</tr>
<?php
} else {
?>
<tr height="50">
<td colspan="2" align="left">Sisteme Kayıtlı Siparişiniz Bulunmamaktadır.</td>
</tr>
<?php
}
?>
</table>
</td>
</tr>
</table>
<?php
} else {
header("Location:index.php");
exit();
}
?>