che errore c'č io nn trovo niente!!!
<?php
include ('connessione.php');
$id=$_GET['id'];
$comandosql1 = "select * from " . $tabeventi ." where id='" .$id ."'";
$vista1 = mysql_query($comandosql1,$link);
$riga = mysql_fetch_array($vista1);

//richiamo del file
$filename = $riga['allegato'];
$file_da_cancellare ="***********";
unlink($file_da_cancellare);

$comandosql ="delete from " . $tabeventi ." where id=$id ";
mysql_query($comandosql,$link) or die ("Impossibile cancellare questa News. Query: ".$comandosql."
Errore: ".mysql_error());
header ("Location: stato_eventi.php");
mysql_close($link);
?>


Warning: Cannot modify header information - headers already sent by