Просмотр файла header.php

Размер файла: 723B
<?
error_reporting(0); 
$viewmess = file("config.txt");
$viewmess = explode("|", $viewmess[0]);
$title = $viewmess[0];
$fon_color = $viewmess[1];
$text_color = $viewmess[2];
$msg_color = $viewmess[3];
$link_color = $viewmess[4];
$link = $viewmess[5];
$copyright = $viewmess[6];
$vsego = $viewmess[7];
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
<html>
<head>
<title>
$title
</title>
<style type=\"text/css\">
body
{
background-color:$fon_color;
color:$text_color;
}
.msg
{
color:$msg_color;
}
a, a.link, a.visited, a.active
{
color:$link_color;
}
</style>
</head>
<body>
<p>
<center>";

$bottom="* * *<br/>
<a href=\"$link\">Главная</a><br/>
$copyright
</center>
</p>
</body>
</html>";
?>