-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMusicControl.php
118 lines (118 loc) · 4.68 KB
/
MusicControl.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
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quản lý nhạc</title>
<?php include './assets/include/framework.php'; ?>
<link rel="stylesheet" href="./assets/css/uploadmain.css">
</head>
<body>
<?php include './assets/include/header.php'; ?>
<main>
<?php include './assets/include/check.php'; ?>
<?php
if (isset($_SESSION['proRG'])) {
$sql_admin = "SELECT IsAdmin FROM profile WHERE account = '$profile'";
$admin = $conn->query($sql_admin) or die($conn->error);
while ($row = $admin->fetch_assoc()) {
$IsAdmin = $row['IsAdmin'];
}
if ($IsAdmin !== 1) {
$_SESSION['error'] = "Phát hiện phiên đăng nhập không hợp lệ";
header("location: ./");
}
else {}
}
else {
$_SESSION['error'] = "Phát hiện phiên đăng nhập không hợp lệ";
header("location: ./");
}
?>
<h1 class="text-center">Nhạc</h1>
<table class="table table-hover table-bordered text-center">
<thead>
<tr class="table-primary">
<th>STT</th>
<th></th>
<th>Tên</th>
<th>Thể loại</th>
<th>Được thêm bởi</th>
<th>Tác giả</th>
<th>Được thêm vào</th>
<th>Tên file</th>
<th>Mô tả</th>
<th colspan="2" class="text-center">Cài đặt</th>
</tr>
</thead>
<tbody>
<?php
if (isset($_GET['page'])) {
$page = $_GET['page'];
}
else {
$page = 1;
}
$number_of_item = 5;
$start_at = ($page-1)*$number_of_item;
$sql_getmusic5 = "SELECT * FROM music LIMIT $start_at,$number_of_item";
$getmusic5 = $conn->query($sql_getmusic5) or die($conn->error);
$x = 0;
while ($row = $getmusic5->fetch_assoc()) {
$x++;
echo
'<tr>
<td class="bg-success">'.$x.'</td>
<td class="bg-success"><img class="img-thumnail" onError="this.onerror=null;this.src=`./assets/img/vector60-1116-01.jpg`;" src="./Profile Storage/'.$row['create_by'].'/img/'.$row['picture'].'" alt="Music image" width="40px" height="40px"></td>
<td class="bg-success">'.$row['title'].'</td>
<td class="bg-success">'.$row['gender'].'</td>
<td class="bg-success">'.$row['create_by'].'</td>
<td class="bg-success">'.$row['author'].'</td>
<td class="bg-success">'.$row['create_at'].'</td>
<td class="bg-success">'.$row['soundfile'].'</td>
<td class="bg-success">'.$row['description'].'</td>
<td class="bg-dark"><a href="./editmusicpage.php?title='.$row['title'].'"><button class="btn btn-success"><i class="fas fa-edit"></i></button></a></td>
<td class="bg-dark"><a onClick="javascript: return confirm(`Xác nhận xóa bài hát '.$row['title'].' ?`);" href="./assets/PHP/deletemusic.php?account='.$row['create_by'].'&title='.$row['title'].'"><button class="btn btn-danger"><i class="fas fa-trash-alt"></i></button></a></td>
</tr>
';
}
?>
</tbody>
</table>
<nav aria-label="Page navigation">
<ul class="pagination justify-content-end">
<?php
$sql_musicdb = "SELECT * FROM music";
$musicdb = $conn->query($sql_musicdb) or die($conn->error);
$total_musicdb = $musicdb->num_rows;
$total_pages = ceil($total_musicdb/$number_of_item);
if ($page>1) {
echo '
<li class="page-item">
<a class="page-link" href="./MusicControl.php?page='.($page-1).'" aria-label="Previous">
<span aria-hidden="true"><i class="fas fa-arrow-circle-left"></i></span>
</a>
</li>
';
}
for ($i = 1; $i < $total_pages; $i++) {
echo '<li class="page-item"><a class="page-link" href="./MusicControl.php?page='.$i.'">'.$i.'</a></li>';
}
if($i>$page) {
echo '
<a class="page-link" href="./MusicControl.php?page='.($page+1).'" aria-label="Next">
<span aria-hidden="true"><i class="fas fa-arrow-circle-right"></i></span>
</a>
</li>
';
}
?>
</ul>
</nav>
<?php include "./assets/include/music-kit.php"; ?>
</main>
<?php include './assets/include/footer.php'; ?>
</body>
</html>