Файл: KOSMOS/inc/index.php
Строк: 20
<?php
error_reporting(0);
header('Content-type: text/html; charset=UTF-8');
header('Cache-control: no-cache');
//////////////////////////////
$link = $_SERVER['kh.elyseo.keo.su']; // адрес вашего сайта без http://
/////////////////////////////
$file = file('base.dat');
$id = array_rand($file, 1);
if($_GET['act']=='include'){
echo htmlspecialchars($file[$id], ENT_NOQUOTES, 'UTF-8');
}
else{
echo '<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Анекдоты</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<div class="verh"><strong>Анекдоты</strong></div>
<div class="content">
<div class="razdel">Читаемс</div>';
echo htmlspecialchars($file[$id], ENT_NOQUOTES, 'UTF-8');
echo '<br/>Всего анекдотов: '.sizeof($file).'<br/>
-<a href="'.$_SERVER['PHP_SELF'].'?'.mt_rand(1,9999).'">Еще анекдот</a>
<div class="rekla">
<a href="http://'.$link.'">На главную</a>
</div>
</div>
</body>
</html>';
}
?>