mmm però nn capisco una cosa!!

questa è la pagina che includo e dove vengono visualizzati gli articoli

<?php
// Makes sure that someone isn't trying to view display.php by itself
if (strstr($PHP_SELF, "displaynews.php")) {
die();
}

// Gets the style.css file
?><?php

// Creates a function named displaynews
function displaynews() {
// Gets the info.php file
require("sqlnews_info.php");

// Connects to the database server
mysql_connect($db_host, $db_user, $db_pass) || die ("Cannot cannot to database server.");
mysql_select_db($db_name) || die ("Cannot cannot to the database.");

$query = mysql_query("SELECT * FROM $prefix" . "news ORDER BY id DESC");
while ($row = mysql_fetch_array($query)) {
$name = $row["name"];
$email = $row["email"];
$title = $row["title"];
$body = $row["body"];
$date = $row["date"];

// Gets the layout that will be used to display the news
$newslayout = file("sqlnews_newslayout.txt");
$newslayout = implode("", $newslayout);

// Makes sure there isn't any ugly \ in the news layout
$newslayout = str_replace("\\", "", $newslayout);

// Replaces the [] things with actual text
$newslayout = str_replace("[name]", "$name", $newslayout);
$newslayout = str_replace("[email]", "$email", $newslayout);
$newslayout = str_replace("[title]", "$title", $newslayout);
$newslayout = str_replace("[body]", "$body", $newslayout);
$newslayout = str_replace("[date]", "$date", $newslayout);

// Displays the news
echo $newslayout;
}
}

// Shows the news on the page
displaynews();

// The following line is required to stay intact.
//-||-> Copyright © 2002 Creative-X-Programming <-||-\\
?>

--------------------------------------------------------------------------


dove dovrei mettere il codice?