-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFAVOURITS.php
363 lines (287 loc) · 13.7 KB
/
FAVOURITS.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?php
include 'php/connectdatabase.php';
session_start();
if($_SESSION['username']=='' || $_SESSION['roll'] != 'Vistor'){
header("Location:index.php");
exit;
}
$username = $_SESSION['username'];
$artWorks_query_result = mysqli_query($conn, "SELECT *
FROM Favourite , Vistor
WHERE Vistor_username = Vusername AND Vistor_username = '$username'
ORDER BY Artwork_id DESC ");
$favourits = mysqli_fetch_all($artWorks_query_result,MYSQLI_ASSOC);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>FAVOURITES</title>
<link rel="icon" href="assets/raqash_icon.png">
<link rel="stylesheet" type="text/css" href="CSS/style.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1 /jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="JS/onClickButtons.js"></script>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
<body>
<!-- Nav Bar -->
<header>
<nav class="menu-bar">
<ul>
<li><a href="VistorHomePage.php">GALLERY</a></li>
<!-- dropdown menue -->
<div class = "drop">
<li class = "dropAccount" onclick= "showDropdownMenu()"><a href="#">ACCOUNT▽</a></li>
<ul class = "dropContent">
<a href="FAVOURITS.php">FAVOURITES</a>
<a href="logout.php">LOG OUT</a>
</ul>
</div>
<!-- logo -->
<img src="assets/raqashlogo.png" alt="RAQASH Logo" width="100px" height="100px">
<li><a href="VistorHomePage.php#AboutUs">ABOUT US</a></li>
<li><a href="VistorHomePage.php#contactUs">CONTACT US</a></li>
</ul>
</nav>
</header>
<button onclick="topFunction()" id="myBtn" title="Go to top"><img src="assets/Raqash Icon-up.svg" width="30px" height="30px" alt="up"></button>
<script>//Get the button:
mybutton = document.getElementById("myBtn");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera
}
function showDropdownMenu(){
$(".dropContent").show();
}
function delet(id){
$(".favo").click(function(){
$.ajax({
type: "POST",
url: 'delete.php',
data:{ row_id: id }
});
});
$(this).attr("src", "assets/Raqash Icon-fav.svg");
}
</script>
<div class = "content">
<!-- page title -->
<label class = "title"> <span id = "dot">•</span> FAVOURITES <span id = "dot">•</span> </label>
<!--Grid row-->
<?php
$counter = 0;
foreach ($favourits as $favourit):
$artID = $favourit['Artwork_id'];
$result1 = mysqli_query($conn, "SELECT * FROM ArtWork WHERE AId = '$artID' ");
$user= mysqli_fetch_array($result1);
$ArtisitUsername = $user['Artist_username'];
$desc = $user['Art_description'];
$img = 'images/'.$user['img'];
if($counter %3 ==0):
?>
<div class="row my-4">
<div class = "cards-container">
<div class="card-deck">
<?php endif;?>
<!--Grid column-->
<div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="<?php echo $img ;?>" alt="planet line art" >
<div class="card-body">
<h5 class="card-title"><?php echo $ArtisitUsername ;?></h5>
<p class="card-text"><?php echo $desc;?></p>
</div>
<div class="card-footer">
<a href="" class="favo" ><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px" onclick="delet(<?php echo $artID;?>)" ></a>
</div>
</div>
<?php
$counter++;
if($counter % 3 == 0):
?>
</div>
</div>
</div>
<?php endif;
endforeach;
// function d(){
// $conn= new mysqli("localhost","root","","RAQASH");
// $sql = "DELETE FROM Favourite WHERE AID =1 ";
// mysqli_query($conn, $sql);
// }
?>
</div>
</div>
</div>
<!--Grid column-->
<!--
<div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic2.jpg" alt="face line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic3.jpg" alt="wolf line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic4.jpg" alt="human line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div>
</div>
</div>
</div> -->
<!--Grid row-->
<!-- <div class="row my-4">
<div class = "cards-container">
<div class="card-deck"> -->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic1.jpg" alt="planet line art" >
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic2.jpg" alt="face line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic3.jpg" alt="wolf line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic4.jpg" alt="human line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div>
</div>
</div>
</div> -->
<!--Grid row-->
<!-- <div class="row my-4">
<div class = "cards-container">
<div class="card-deck"> -->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic1.jpg" alt="planet line art" >
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic2.jpg" alt="face line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic3.jpg" alt="wolf line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px"></a>
</div>
</div> -->
<!--Grid column-->
<!-- <div class="card" style="width: 18rem;">
<img class="card-img-top img-resize" src="assets/pic4.jpg" alt="human line art">
<div class="card-body">
<h5 class="card-title">Artist Account</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
</div>
<div class="card-footer">
<a href="#"><img src="assets/Raqash Icon-share.svg" alt="share icon" width="30px" height="30px"></a>
<a href="#"><img src="assets/Raqash Icon-favActivated.svg" alt="bookmark icon" height="30px" width="30px" id="fav"></a>
</div>
</div>
</div>
</div>
</div>
</div> -->
<div class = "footer">©RAQASH Team 2020</div>
</body>
</html>