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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
<? session_start();
if(!array_key_exists('user', $_SESSION)) { header("Location: index.php"); exit; } ?>
<? include("../setConn.php"); include "../SmartImage.class.php";
$oldfoto = $_POST['oldfoto']; $cancella1 = $_POST['cancella1'];
$userfile = $_POST['userfile']; $titolo = $_POST['titolo']; $testo = $_POST['testo'];
$titolo = addslashes(stripslashes($titolo)); $titolo = str_replace("<", "<", $titolo); $titolo = str_replace(">", ">", $titolo); $titolo = nl2br($titolo);
$testo = addslashes(stripslashes($testo)); if ($db == FALSE) die ("Errore nella connessione."); $sql = "UPDATE contatti SET testo='".$testo."' WHERE ID=".$_SESSION['ID']; mysql_select_db("Sql603025_1"); $Result1 = mysql_query($sql) or die(mysql_error()); $file_temp2=($_FILES['userfile']['tmp_name']); $percorso2="../../public/contatti/"; $inviato2=file_exists($file_temp2); if($_FILES['userfile']['tmp_name'] !=""){ $img = new SmartImage($_FILES['userfile']['tmp_name']); $img->resize(150, 100, true); $img->saveImage($_FILES['userfile']['tmp_name']); } if ($inviato2) { if($oldfoto!=""){ unlink($percorso2.$oldfoto); } $nuovo_nome=str_replace(" ", "_", $_SESSION['ID']."_".$_FILES['userfile']['name']); $nuovo_nome=str_replace("%", "_", $nuovo_nome); move_uploaded_file($file_temp2, $percorso2.$nuovo_nome); $sql = "UPDATE contatti SET foto='$nuovo_nome' WHERE ID=".$_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=mod.php?nomecat=CONTATTI">
<title></title>
</head> <body> <div id="container"> <div id="content"> <TABLE width="100%" border="0"> <TR> <TD valign="top"> <TABLE> <TR> <td height="50"><h1><? echo str_replace("_", " ", $_POST['nomecat']); ?></h1></td> </TR> </TABLE> </TD> </TR> <TR> <TD valign="top"> Modifica effettuata!!! </TD> </TR> </TABLE> </div> </div> </body> </html>
<? }else{
//Quando modifico e non c'è upload della foto
if($cancella1==1) { unlink($percorso2.$oldfoto);
$sql = "UPDATE contatti SET foto='' WHERE ID=".$_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=mod.php?nomecat=CONTATTI">
<title></title>
</head> <body> <div id="container"> <div id="content"> <TABLE width="100%" border="0"> <TR> <TD valign="top"> <TABLE> <TR> <td height="50"><h1><? echo str_replace("_", " ", $_POST['nomecat']); ?></h1></td> </TR> </TABLE> </TD> </TR> <TR> <TD valign="top"> Modifica effettuata!!! </TD> </TR> </TABLE> </div> </div> </body> </html>
<? } mysql_close($db);
?>
|