-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodo.php
148 lines (134 loc) · 3.94 KB
/
modo.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
<?php
include_once('header.php');
include_once('footer.php');
include('db.php');
?>
<h1>Moderation</h1>
<?php
if ($_SESSION['rights']=="2" OR $_SESSION['rights']=="3")
{
$host = 'localhost';
$dbname = 'samplitek';
$usern = 'root';
$passw = '';
$dsn = "mysql:host=$host;dbname=$dbname";
// get all users
$sql = "SELECT `samples`.*, `users`.`username`
FROM `samples`
LEFT JOIN `users` ON `samples`.`creatorID` = `users`.`id`;";
try {
$pdo = new PDO($dsn, $usern, $passw);
$stmt = $pdo->query($sql);
if ($stmt === false) {
die("Error");
}
} catch (PDOException $e) {
echo $e->getMessage();
}
?>
<table>
<thead>
<tr>
<th>ID</th>
<th>Sample Name</th>
<th>Genre</th>
<th>Instrument</th>
<th>BPM</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<?php while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) : ?>
<tr>
<td><?php echo htmlspecialchars($row['id']); ?></td>
<td><?php echo htmlspecialchars($row['sampleName']); ?></td>
<td><?php echo htmlspecialchars($row['genre']); ?></td>
<td><?php echo htmlspecialchars($row['instrument']); ?></td>
<td><?php echo htmlspecialchars($row['bpm']); ?></td>
<td><?php echo htmlspecialchars($row['username']); ?></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
<!--DELETE SAMPLE-->
<p>Sample to delete?(input the id)</p>
<form action="modo.php" method="post">
<input type="text" name="sampleID" id="sampleID" placeholder="Sample ID">
<input type="submit" name="deleteSample" placeholder="Delete the sample">
</form>
<?php
$host = 'localhost';
$dbname = 'samplitek';
$usern = 'root';
$passw = '';
$dsn = "mysql:host=$host;dbname=$dbname";
// get all users
$sql = "SELECT `songs`.*, `users`.`username`
FROM `songs`
LEFT JOIN `users` ON `songs`.`creatorID` = `users`.`id`";
try {
$pdo = new PDO($dsn, $usern, $passw);
$stmt = $pdo->query($sql);
if ($stmt === false) {
die("Error");
}
}
catch (PDOException $e){
echo $e->getMessage();
}
?>
<table>
<thead>
<tr>
<th>ID</th>
<th>Song Name</th>
<th>Genre</th>
<th>BPM</th>
<th>username</th>
</tr>
</thead>
<tbody>
<?php while($row = $stmt->fetch(PDO::FETCH_ASSOC)) : ?>
<tr>
<td><?php echo htmlspecialchars($row['id']); ?></td>
<td><?php echo htmlspecialchars($row['songName']); ?></td>
<td><?php echo htmlspecialchars($row['genre']); ?></td>
<td><?php echo htmlspecialchars($row['bpm']); ?></td>
<td><?php echo htmlspecialchars($row['username']); ?></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
<p>Song to delete?(input the id)</p>
<form action="modo.php" method="post">
<input type="text" name="songID" id="songID" placeholder="Song ID">
<input type="submit" name="deleteSong" placeholder="Delete the song">
</form>
<?php
if (isset($_POST['deleteSample'])){
if (!empty($_POST['sampleID'])){
header("Location: modo.php");
$sampleId = trim($_POST['sampleID']);
print_r($sampleId);
$stmt = $bd->prepare("DELETE FROM samples WHERE id=:sampleId");
$stmt->bindParam(':sampleId', $sampleId);
$stmt->execute();
exit();
}
}
if (isset($_POST['deleteSong'])){
if (!empty($_POST['songID'])){
header("Location: modo.php");
$songId = trim($_POST['songID']);
print_r($songId);
$stmt = $bd->prepare("DELETE FROM songs WHERE id=:songId");
$stmt->bindParam(':songId', $songId);
$stmt->execute();
exit();
}
}
}
else{
echo "Trying to be clever boy ?";
}
?>