forked from rpiambulance/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.delete_event.php
40 lines (30 loc) · 1.08 KB
/
.delete_event.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
<?php
if($_SERVER['REQUEST_METHOD'] === 'POST') {
session_id($_POST['session_id']);
session_start();
require_once ".db_config.php";
$connection = new PDO("mysql:host=$dhost;dbname=$dname", $duser, $dpassword);
$connection->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
if(!isset($dname)) {
$dname = 'ambulanc_web';
}
if(!isset($_POST['event_id'])) {
return;
}
$username = $_SESSION['username'];
$eventId = $_POST['event_id'];
$statement = $connection->prepare("SELECT * FROM members WHERE username=:username");
$statement->bindParam(':username', $username);
$statement->execute();
$memberInfo = $statement->fetchAll(PDO::FETCH_ASSOC)[0];
$memberId = $memberInfo['id'];
if($memberInfo['admin'] === '1') {
$statement = $connection->prepare("DELETE FROM events_attendees WHERE eventid = :eventId");
$statement->bindParam(':eventId', $eventId);
$statement->execute();
$statement = $connection->prepare("DELETE FROM events WHERE id = :eventId");
$statement->bindParam(':eventId', $eventId);
$statement->execute();
}
}
?>