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
|
<? session_start();
if(!array_key_exists('user', $_SESSION)) { header("Location: index.php"); exit; } ?> <? include("../setConn.php"); include("../class_utility.php");
$special = new class_utility();
if ($db == FALSE) die ("Errore nella connessione."); $sql = "SELECT * FROM galleriavideo";
$result = mysql_db_query("Sql603025_1", $sql, $db); while($results = mysql_fetch_array($result)) { $titolo = $results['titolo']; $descrizione = $results['descrizione']; $gg = $results['gg']; $mm = $results['mm']; $aaaa = $results['aaaa']; }
$titolo = str_replace("\"", """, $titolo); ?> <html> <head>
<? include("../jstextarea.php"); ?> <link rel="stylesheet" href="../style.css" type="text/css" media="screen" />
<title></title>
</head> <body> <div id="container"> <div id="content"> <FORM enctype="multipart/form-data" method="POST" action='save.php'> <INPUT TYPE="hidden" name="data" value="<? echo date("Y-m-d H:i:s"); ?>"> <TABLE width="100%" border="0"> <TR> <TD valign="top"> <TABLE> <TR> <td height="50"><H1><? echo str_replace("_", " ", $_GET['nomecat']); ?></H1></td> </TR> </TABLE> </TD> </TR>
<TR> <TD width="200"><B>Codice Youtube</B>:</TD> <TD valign="top"> <INPUT TYPE="text" NAME="url" size="80" maxlength="500" class="modulo"> </TD> </TR> <TR> <TD width="200"><B>Titiolo</B>:</TD> <TD valign="top"> <INPUT TYPE="text" NAME="titolo" size="80" maxlength="500" class="modulo"> </TD> </TR> <TR> <TD width="200"><B>Descrizione</B>:</TD> <TD valign="top"> <TEXTAREA id="testo" NAME="descrizione" ROWS="15" COLS="100" class="modulo"></TEXTAREA> </TD> </TR> <TR> <TD width="200" height="100"><B>Foto:</B></TD> <TD> <input name="userfile" type="file" class="modulo"> </TD> </TR>
<TR> <TD><INPUT colspan="2" TYPE="submit" value="Pubblica" class="modulo"></TD> </TR> </TABLE> </FORM> </div> </div> </body> </html>
|