function load_template($template) {
$title="Тестовый заголовок";
if ($template == "index") {
$content = load_news();
$tmp = file_get_contents("index.html");
$tmp = str_replace("{title}", $title, $tmp);
$tmp = str_replace("{content}", $content, $tmp);
echo $tmp;
}
}
while ($row = mysql_fetch_assoc($result)) { // Массив с новостями
$text = shortstr($row['full_text']); //Короткий тайтл
$datetime = showtime($row['datetime']); //Читабельная дата и время
echo "<div class = \"block\"><div class = \"title\"><h3>{$row['title']}</h3>{$datetime}</div><div class = \"text\">{$text}</div></div><br>";
}
А почему от этих шаблонов нет толка?