-
Notifications
You must be signed in to change notification settings - Fork 2
/
adminDeletePage.php
62 lines (55 loc) · 1.69 KB
/
adminDeletePage.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
<?php
// Startar sessionen
session_start();
// Kopplar till databasen
include 'db_connect.php';
// Kopplar till fil med queries
include 'queries.php';
// Koppling till fil med funktioner
include "functions.php";
// Kollar om användare är inloggad som admin
loggedInAsAdmin();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Koppling till javascript-fil -->
<script src="functions.js"></script>
<!-- Koppling till css-filer -->
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="startpage.css">
<link rel="stylesheet" href="popUp.css">
<title>Radera</title>
</head>
<body>
<?php
// Skapar en variabel för det valda coachId
$currentCoachId = $_GET['id'];
// Kopplar till databasen och använder functionen deleteStudyCoach på variabeln
if ($connection ->query(deleteStudyCoach($currentCoachId)))
{
?>
<div class="popUp">
<?php
// Visar att förfrågan gått igenom
echo '<div class="popUpMsg"><h2>Studiecoach raderad!</h2></div>';
// Länk tillbaka till adminStartpage.php
echo '<a href="adminStartpage.php" class="linkStartpage">Tillbaka till startsidan</a>';
?>
</div>
<?php
}
else
{
// Visar att förfrågan ej gick igenom och printar ut SQL-satsen.
echo "Något gick fel.". $sql. "<br>". $connection->error;
// Länk tillbaka till adminStartpage.php
echo '<a href="adminStartpage.php">Försök igen</a>';
}
// Stänger databaskopplingen.
$connection->close();
?>
</div>
</body>
</html>