Topic: Stay on the same page

On my website is news not displayed on the home page. When I choose one of the listed items the system returns to the home page without displaying the requested item.

I used your proposed code
<?PHP
// Our Latest 5 Headlines:
$static = TRUE;
$number = "5";
$template = "Headlines";
include("path/to/show_news.php");

// The News
include("path/to/show_news.php");
?>

What do I do wrong?

Toine