-
Notifications
You must be signed in to change notification settings - Fork 0
/
hesabimfavoriler.php
138 lines (130 loc) · 9.68 KB
/
hesabimfavoriler.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
<?php
if(isset($_SESSION["Kullanici"])){
$SayfalamaIcinSolVeSagButonSayisi = 2;
$SayfaBasinaGosterilecekKayitSayisi = 10;
$ToplamKayitSayisiSorgusu = $VeritabaniBaglantisi->prepare("SELECT * FROM favoriler WHERE UyeId = ? ORDER BY id 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="4" style="color:#FF9900"><h3>Hesabım > Favoriler</h3></td>
</tr>
<tr height="30">
<td colspan="4" valign="top" style="border-bottom: 1px dashed #CCCCCC;">Favorilerinize Eklediğiniz Tüm Ürünleri Bu Alandan Görüntüleyebilirsiniz.</td>
</tr>
<tr height="50">
<td width="75" style="background: #f8ffa7; color: black;" align="left"> Resim</td>
<td width="25" style="background: #f8ffa7; color: black;" align="left">Sil</td>
<td width="865" style="background: #f8ffa7; color: black;" align="left">Adı</td>
<td width="100" style="background: #f8ffa7; color: black;" align="left">Fiyatı</td>
</tr>
<?php
$FavorilerSorgusu = $VeritabaniBaglantisi->prepare("SELECT * FROM favoriler WHERE UyeId = ? ORDER BY id DESC LIMIT $SayfalamayaBaslanacakKayitSayisi, $SayfaBasinaGosterilecekKayitSayisi");
$FavorilerSorgusu->execute([$KullaniciID]);
$FavoriSayisi = $FavorilerSorgusu->rowCount();
$FavoriKayitlari = $FavorilerSorgusu->fetchAll(PDO::FETCH_ASSOC);
if($FavoriSayisi>0){
foreach($FavoriKayitlari as $FavoriSatirlar){
$UrunlerSorgusu = $VeritabaniBaglantisi->prepare("SELECT * FROM urunler WHERE id = ? LIMIT 1");
$UrunlerSorgusu->execute([$FavoriSatirlar["UrunId"]]);
$UrunKaydi = $UrunlerSorgusu->fetch(PDO::FETCH_ASSOC);
$UrununAdi = $UrunKaydi["UrunAdi"];
$UrununUrunTuru = $UrunKaydi["UrunTuru"];
$UrununResmi = $UrunKaydi["UrunResmiBir"];
$UrununUrunFiyati = $UrunKaydi["UrunFiyati"];
$UrununParaBirimi = $UrunKaydi["ParaBirimi"];
if($UrununUrunTuru == "Erkek Ayakkabısı"){
$ResimKlasoruAdi = "Erkek";
}elseif($UrununUrunTuru == "Kadın Ayakkabısı"){
$ResimKlasoruAdi = "Kadin";
}else{
$ResimKlasoruAdi = "Cocuk";
}
?>
<tr height="30">
<td width="75" align="left" style="border-bottom: 1px dashed #CCCCCC;"><a href="index.php?SK=83&ID=<?php echo DonusumleriGeriDondur($UrunKaydi["id"]); ?>"><img src="Resimler/UrunResimleri/<?php echo $ResimKlasoruAdi; ?>/<?php echo DonusumleriGeriDondur($UrununResmi); ?>" border="0" width="60" height="80"></a></td>
<td width="50" align="left" style="border-bottom: 1px dashed #CCCCCC;"><a href="index.php?SK=81&ID=<?php echo DonusumleriGeriDondur($FavoriSatirlar["id"]); ?>"><img src="Resimler/Sil20x20.png" border="0"></a></td>
<td width="415" align="left" style="border-bottom: 1px dashed #CCCCCC;"><a href="index.php?SK=83&ID=<?php echo DonusumleriGeriDondur($UrunKaydi["id"]); ?>" style="color: #646464; text-decoration: none;"><?php echo DonusumleriGeriDondur($UrununAdi); ?></a></td>
<td width="100" align="left" style="border-bottom: 1px dashed #CCCCCC;"><a href="index.php?SK=83&ID=<?php echo DonusumleriGeriDondur($UrunKaydi["id"]); ?>" style="color: #646464; text-decoration: none;"><?php echo FiyatBicimlendir(DonusumleriGeriDondur($UrununUrunFiyati)); ?> <?php echo DonusumleriGeriDondur($UrununParaBirimi); ?></a></td>
</tr>
<?php
}
if($BulunanSayfaSayisi>1){
?>
<tr height="50">
<td colspan="4" 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=59&SYF=1'><<</a></span>";
$SayfalamaIcinSayfaDegeriniBirGeriAl = $Sayfalama-1;
echo "<span class='SayfalamaPasif'><a href='index.php?SK=59&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=59&SYF=" . $SayfalamaIcinSayfaIndexDegeri . "'> " . $SayfalamaIcinSayfaIndexDegeri . "</a></span>";
}
}
}
if($Sayfalama!=$BulunanSayfaSayisi){
$SayfalamaIcinSayfaDegeriniBirIleriAl = $Sayfalama+1;
echo "<span class='SayfalamaPasif'><a href='index.php?SK=59&SYF=" . $SayfalamaIcinSayfaDegeriniBirIleriAl . "'>></a></span>";
echo "<span class='SayfalamaPasif'><a href='index.php?SK=59&SYF=" . $BulunanSayfaSayisi . "'>>></a></span>";
}
?>
</div>
</div></td>
</tr>
<?php
}
}else{
?>
<tr height="50">
<td colspan="4" align="left">Sisteme Kayıtlı Favori Ürününüz Bulunmamaktadır.</td>
</tr>
<?php
}
?>
</table>
</td>
</tr>
</table>
<?php
}else{
header("Location:index.php");
exit();
}
?>