-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeleteSuccess.php
More file actions
49 lines (38 loc) · 1.25 KB
/
deleteSuccess.php
File metadata and controls
49 lines (38 loc) · 1.25 KB
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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<!-- HEAD -->
<?php include(__DIR__ . "/includes/head.php"); ?>
<body>
<?php
require (__DIR__ . "/dat/controller.php");
include (__DIR__ . "/includes/data.php");
$activePage = 4;
?>
<div class="container">
<div class="row clearfix">
<div class="col-md-12 column">
<!-- HEADER -->
<?php include(__DIR__ . "/includes/header.php"); ?>
<!-- NAVIGATION -->
<?php include(__DIR__ . "/includes/navigation.php"); ?>
</div>
</div>
<div class="row clearfix">
<div class="col-md-12 column">
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
deleteEvent($_POST["deleteid"]);
}
?>
<h1><?php echo $title_deletesuccess; ?></h1>
<p><?php echo $text_deletesuccess; ?></p>
</div>
</div>
</div>
</body>
</html>