/web/htdocs/www.euroroma.net/home/admin/apertura/del.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
<? 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="IDarticolo" value="<? echo $_GET['ID']; ?>">
        <INPUT TYPE="hidden" name="nomecat" value="<? echo str_replace("_"" "$_GET['nomecat']); ?>">
        
        <TABLE width="100%" border="0">
        <TR>
            <TD><H1><? echo str_replace("_"" "$_GET['nomecat']); ?></H1></TD>
        </TR>
        </TABLE>
        <TABLE width="100%" border="0">
        <TR>
            <TD>Elimina dalla prima pagina l'articolo dello apertura 1.</TD>
        </TR>
        </TABLE>
        <TABLE width="100%" border="0">
        <TR>
            <TD><INPUT TYPE='submit' value='Elimina' class='modulo'></TD>
        </TR>
        </TABLE>

        
        </FORM>
    </div>
</div>
</body>
</html>