-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin_artworks.php
169 lines (144 loc) · 4.8 KB
/
admin_artworks.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
<?php session_start();
include("includes/connection.php");
include("admin.php");
?>
<!DOCTYPE html>
<html>
<head>
<style>
.head-table {
font-size: 40px;
font-family: "Yu Gothic UI Light";
color: #2a8048;
position: absolute;
top: 170px;
left: 45px;
}
.head-user{
font-variant: small-caps;
font-size: 50px;
font-family: "Yu Gothic UI Light";
color: rgb( 00, 00, 00 );
position: absolute;
top: 155px;
left: 190px;
z-index: 19;
}
.hr{
position: absolute;
border: 1px solid #2a8048;
top: 235px;
margin-left: -26px;
width: 1150px;
left: 73px;
}
.photo {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
position: relative ;
width: 300px;
height : 250px;
}
.desc-title{
color:#2a8048;
font-variant: small-caps;
font-family: "Yu Gothic UI Light";
font-size: 29px;
position: relative;
top: 0px;
left: 0px;
text-decoration: none;
}
.desc-content{
position: relative;
font-size: 18px;
font-family: "Yu Gothic UI Light";
top: 0px;
}
.desc-content2{
position: relative;
font-size: 18px;
font-family: "Yu Gothic UI Light";
top: -20px;
}
.pic-table{
border: 8px solid black;
box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.2);
background-color: #fafafa;
border-collapse: collapse;
float: left;
overflow: auto;
margin: 100px 50px 100px 40px;
}
.space{
margin-top: 120px;
position: relative;
left:130px;
}
.deletebutton{
border-radius: 8px;
font-family: "Yu Gothic UI Light";
font-weight: bold;
color: white;
font-size: 25px;
background-color: #FF0017;
position: relative;
top: -20px;
padding: 10px;
left: 10px;
width: 100px;
height: 35px;
text-decoration: none;
}
</style>
</head>
<body>
<script>
function YNconfirm() {
if (window.confirm('Are you sure you want to delete this artwork?'))
{
return true;
}
else
return false;
};
</script>
<p><h1 class="head-table" >TABLE: </h1>
<h1 class="head-user" >Artworks</h1><br> <hr class="hr" style="border-bottom: 2px solid #2a8048;">
</p>
<form action="delete_artwork.php" method="POST">
<?php
$query_category="SELECT art_work.art_id, art_work.art_title,art_work.art_price, user.user_fname, user.user_mname,user.user_lname,art_work.art_description,art_work.art_imagepath, art_work.art_category
FROM art_work,user
where art_work.user_id = user.user_id AND art_work.art_status = 'Available' ORDER BY ART_WORK.ART_DATE ASC";
$result_category = mysqli_query($conn,$query_category);
if(mysqli_num_rows($result_category) <=0)
{
echo '<h1 align="Center"><br><br><br><br><br><br><br>No Available Artworks </h1>';
}
else{
while($row = mysqli_fetch_array($result_category)){
echo ' <div class="space" >
<table class="pic-table">
<tr>
<td>
<img class="photo" src="pictures/arts/'.$row['art_imagepath'].'" > <br>'.
'<a href=info_art.php?id='.$row['art_id'].' class="desc-title"> '.$row['art_title'].' </a>
<p class="desc-content">'.$row['art_category'].'</p>
<p class="desc-content" style="float: right;">Rs'.$row['art_price'].'.00</p> <br>
<p class="desc-content2">'.$row['user_fname'].' '.$row['user_mname'].' '.$row['user_lname'].'</p>
<p><a class="deletebutton" href =admin_artworks_action.php?delete='.$row['art_id'].'&pic='.$row['art_imagepath'].' onclick="return(YNconfirm());" > Delete </a></p>
</td>
</tr>
</table>
</div>';
}
}
echo "<br><br>";
?>
</div>
</form>
</body>
</html>