It is possible to include 1 file multiple times. However I recommend you to use a function instead. This will help keep your source more compact. Functions can be called multiple times with different variables. Here is an example for your case.
<?php
function template($headline_text,$message_text,$message_id) {
// This is an example layout
$content .= "<b>$headline_text</b><br /><br />\n";
$content .= $message_text . "<br />\n";
$content .= "[<a href=\"news.php?news_id=$message_id\">more...</a>]";
return $content;
}
?>
Then call the function and define the variables like this.
<?php
template("Headline","Message",11);
?>
Whenever you are ready to echo all the content, use this:
echo $content;
This would in this small example, output:
Headline
Message
[more...]
Don't forget to include the file containing your function in the file where you want to call it from.
If this does not make much sense yet, try reading into functions some more. Hope this will get you going on the right track 🙂