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

Размер файла: 1.12Kb
<?php
header("Content-Type: text/html; charset=utf-8");
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!--Svoboda News-->
<!--by Proton-->
<!--Version 1.1-->
<title>
Новости сайта
</title>
<style type="text/css">
body {
background-color:yellow; color: blue; padding:2px; }
.even {
background-color: #ddf; color:black; margin:2px; padding:3px; border: 1px solid silver;}
.uneven {
background-color: #eef; color:black; margin:2px; padding:3px; border: 1px solid silver;}
.text {
background-color: white; color:black; margin:2px; padding:3px; border: 1px solid silver;}
.form {
background-color: white; color:black; margin:2px; padding:3px; border: 1px solid silver;}
p {
background-color: orange; color:aqua; padding:3px; margin: 1px; border-top: 1px solid white; }
p a {
color: white; }
div a {
color: blue; }
a {
color: red; }
</style>
</head>
<body>';
if (!empty($_SESSION['text']))
{
echo '<div class="text">';
echo $_SESSION['text'];
echo '</div>';
$_SESSION['text']='';
}
$end='';
$end.='<p>- <a href="/">Главная</a><br/></p>';
$end.='Coding by Proton<br/>';
$end.='</body></html>';
?>