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
|
<?php include 'config.php';
// Check if the user is logged in
if ((!isSet($_SESSION['loginname'])) || ($loggin <> '1')) { header("Location: login.php"); exit; } require("configure.php");
$material_logoid = check_input($_GET["material_logoid"]);
// Delete db
$sql = "SELECT * FROM material_logo WHERE material_logoid='$material_logoid'"; $result=mysql_query($sql); $row = mysql_fetch_array($result,MYSQL_ASSOC);
unlink("../images/material_logo/".$row{'material_logoimgtc'}); //$sql = "update material_logo set material_logoimgtc='' "; //$sql .= " where material_logoid='$material_logoid'"; //mysql_query($sql);
unlink("../images/material_logo/".$row{'material_logoimgen'}); //$sql = "update material_logo set material_logoimgen='' "; //$sql .= " where material_logoid='$material_logoid'"; //mysql_query($sql);
$sql2 = "delete from material_logo where material_logoid='$material_logoid'"; mysql_query($sql2); if( mysql_errno() > 0 ){ echo 'Delete Material Logo Error:<br />'. mysql_error() .'<br />SQL: '. $sql2; exit; }
//mysql_query("UPDATE news SET newssort = newssort-1 WHERE newssort >= $newssort "); mysql_close($dbh);
header("Location:material_logo_index.php?msg=Delete Successful");
?>
|