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
|
<? session_start();
if(!array_key_exists('user', $_SESSION)) { header("Location: index.php"); exit; } ?> <html> <head>
<link rel="stylesheet" href="../style.css" type="text/css" media="screen" />
<title></title>
</head> <body> <div id="container"> <div id="content"> <FORM method="POST" action='del2.php'> <INPUT TYPE="hidden" name="nomecat" value="<? echo $_GET['nomecat']; ?>"> <TABLE width="100%" border="0"> <TR> <TD><H1><? echo str_replace("_", " ", $_GET['nomecat']); ?></H1></TD> </TR> </TABLE> <TABLE width="100%" border="0" > <? $_SESSION['ID'] = $_GET['ID']; include("../setConn.php"); include("../class_utility.php"); $special = new class_utility(); if ($db == FALSE) die ("Errore nella connessione."); $sql = "SELECT * FROM risultati WHERE ID=".$_GET['ID'];
$result = mysql_db_query("Sql603025_1", $sql, $db); while($results = mysql_fetch_array($result)){ $rubrica = $special->specialChars($results["Rubrica"]); $autore = $special->specialChars($results["Autore"]); $titolo = $special->specialChars($results["Titolo"]); $sottotitolo = $special->specialChars($results["Sottotitolo"]); $testo = $special->specialChars($results["Testo"]); $url = $special->specialChars($results["URLimg"]); $data = $special->specialChars($results["Data_e_ora"]); $data = $data{8}.$data{9}.$data{7}.$data{5}.$data{6}.$data{4}.$data{0}.$data{1}.$data{2}.$data{3}; print "<tr><td height='30' valign='top'>".$data."</td></tr>"; print "<tr><td height='50' valign='center'>".$results["Titolo"]."</td></tr>"; print "<tr><td height='50' valign='center'>".$results["Sottotitolo"]."</td></tr>"; print "<tr><td height='50' valign='center'>".$results["Testo"]."</td></tr>"; if($results['URLimg']){ print "<tr><td height='50' valign='center'><img src='".$results["URLimg"]."'></td></tr>"; }
print "<TR><TD height='50'><INPUT TYPE='submit' value='Elimina' class='modulo'></TD></TR>"; $nomefoto = str_replace("http://www.euroroma.net/public/articoli/", "", $results['URLimg']); $_SESSION['nomefoto'] = $nomefoto; }
mysql_close($db); ?> </TABLE> </FORM> </div> </div> </body> </html>
|