/web/htdocs/www.euroroma.net/home/admin/photogallery/del2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<? session_start();

if(!
array_key_exists('user'$_SESSION))
{
    
header("Location: index.php");
    exit;
}
?>

<?
include("../setConn.php");

if (
$db == FALSE)
die (
"Errore nella connessione.");
$sql "DELETE FROM photogallery WHERE ID=".$_SESSION['ID'];
if (
mysql_db_query("Sql603025_1"$sql$db)){
    
    
//cerco in photo e cancello le immagini
    
if ($db == FALSE)
        die (
"Errore nella connessione.");
    
$sql "SELECT * FROM photo WHERE ID_photogallery=".$_SESSION['ID'];
    
$result2 mysql_db_query("Sql603025_1"$sql$db);
    while(
$results2 mysql_fetch_array($result2)){                    
        
$miniatura $results2['miniatura'];
        
unlink("../../public/photo/".$miniatura);
    }
    
    if (
$db == FALSE)
    die (
"Errore nella connessione.");
    
$sql "DELETE FROM photo WHERE ID_photogallery=".$_SESSION['ID'];
    
mysql_db_query("Sql603025_1"$sql$db);

    
?>
<html>
<head>

<link rel="stylesheet" href="../style.css" type="text/css" media="screen" />

<META HTTP-EQUIV="refresh" content="2; url=lista.php?nomecat=PHOTOGALLERY&ID_newscategoria=<? echo $_SESSION['ID_newscategoria']; ?>">

<title></title>

</head>
<body>
<div id="container">
    
    <div id="content">
        <TABLE width="100%" border="0">
        <TR>
            <TD valign="top">
                <TABLE>
                <TR>
                    <td width="500" height="50"><H1><? echo str_replace("_"" "$_POST['nomecat']); ?></H1></td>
                </TR>
                </TABLE>
            </TD>
        </TR>
        <TR>
            <TD valign="top">
                Eliminato!!!
            </TD>
        </TR>
        </TABLE>
    </div>
</div>
</body>
</html>
<?
}
else{
    echo 
"Erorre durante la cancellazione.";
}

mysql_close($db);
?>