questo è il codice:

_________________
<?

// if ((!isset($_GET['id_news'])) AND 'id_news' =='')
//{
//echo "";
//} else {

if (isset($_GET['id_news']))
{
$id_news = $_GET['id_news'];

//visualizziamo la news corrispondente all'id inviato
$query = @mysql_query("SELECT news_titolo, news_testo, news_data, Link_img, Link_Pagina FROM tb_news WHERE news_id='$id_news'") or die (mysql_error());
$fetch = @mysql_fetch_array($query) or die (mysql_error());
$news_titolo = stripslashes($fetch['news_titolo']);
$news_testo = stripslashes($fetch['news_testo']);
$immagine= stripslashes($fetch['Link_img']);
$link= stripslashes($fetch['Link_Pagina']);
//modifichiamo la data nel formato europeo dd mm yyyy
$news_data = preg_replace('/^(.{4})-(.{2})-(.{2})$/','$3-$2-$1', stripslashes($fetch['news_data']));

//stampa dei record
echo "<p align=center class=Titolo_Notizie>" .$news_titolo. "

</p>";
// echo "<p align=justify class=testo>" .$news_testo. "
</p>";

if ($immagine != "")
{
echo " [img] .$immagine .[/img]<p align=justify class=testo>" .$news_testo."</p>";

}

if($link!="")
{
include $link;
}
echo "<class=Testo_news>Inserito il: " .$news_data. "
";
echo "<div align=right>Torna Indietro";
}
//aggiorniamo il contatore delle views
@mysql_query("UPDATE tb_news SET news_views = news_views + 1 WHERE news_id='$id_news'") or die (mysql_error());

//chiudiamo la connessione
@mysql_close();


?>