-
Notifications
You must be signed in to change notification settings - Fork 1
/
deleteimage.php
54 lines (49 loc) · 1.27 KB
/
deleteimage.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
<?php
include 'includes/checklogin.php';
if (isset($_GET['pic']))
{
$picToDelete=$_GET['pic'];
//echo "delete PICTUREGROUP:".$picToDelete;
//echo "</BR>";
//echo "</BR>";
if (file_exists('capture/usb/preview-'.$picToDelete))
{
//echo "delete PIC: preview-".$picToDelete;
//echo "</BR>";
$prevDelete=unlink('capture/usb/preview-'.$picToDelete);
}
else
{
$prevDelete=true;
}
if (file_exists('capture/usb/fbi-'.$picToDelete))
{
//echo "delete PIC: fbi-".$picToDelete;
//echo "</BR>";
$fbiDelete=unlink('capture/usb/fbi-'.$picToDelete);
}
else
{
$fbiDelete=true;
}
if (file_exists('capture/usb/'.$picToDelete))
{
//echo "delete PIC: ".$picToDelete;
//echo "</BR>";
$picDelete=unlink('capture/usb/'.$picToDelete);
}
if ($prevDelete AND $fbiDelete AND $picDelete)
{
echo 'Eintrag gelöscht';
}
else
{
echo 'Ein Fehler ist beim Löschen aufgetreten';
}
//header( 'Location: listimages.php' );
}
else
{
header( 'Location: listimages.php' );
}
?>