Alone
Я сразу и не понял, что ты хочешь.Лови.
CODE:<?php
$title = 'Not Found';
$content = file_get_contents(__FILE__);
if (preg_match("#[^\#\]]<h1>(.+?)</h1>[^\#\[]#i", $content, $title)){
$title = $title[1];
}
?>
<head>
<title><? echo $title; ?></title>
</head>
<body>
<h1>Здесь заголовок</h1>
Здесь контент..
</body>
</html> |