Размер файла: 4.51Kb
<?php
Error_Reporting(E_ALL & ~E_NOTICE);
Error_Reporting (ERROR | WARNING);
require_once"color.php";
header("Content-type:text/html; charset=utf-8");
$PagesCountApprox = 5000; //Количество генерируемых страниц, если указать мало, то поисковик не проиндексирует ваш сайт,
//если указать много, скрипт будет генерировать афигенный трафик, разумно выбрать 2000-5000
///////////////////БАННЕРЫ////////////////////////////////////////
$banner_top1=<<<BANNER_END
<a href="http://banners.su/click.php?id=16032">
<img src="http://banners.su/banner.php?id=16032" alt="banners.su">
</a>
BANNER_END;
$banner_top2=<<<BANNER_END
<a href="http://banners.su/click.php?id=18196">
<img src="http://banners.su/banner.php?id=18196" alt="banners.su">
</a>
BANNER_END;
$banner_bottom1=<<<BANNER_END
<a href="http://banners.su/click.php?id=18197">
<img src="http://banners.su/banner.php?id=18197" alt="banners.su">
</a>
BANNER_END;
$banner_bottom2=<<<BANNER_END
<a href="http://banners.su/click.php?id=16032">
<img src="http://banners.su/banner.php?id=16032" alt="banners.su">
</a>
BANNER_END;
///////////////////БАННЕРЫ////////////////////////////////////////
/////////////////////////ЭТО НЕ ТРОГАТЬ//////////////////////////////
srand((float) microtime() * 10000000);
$links = array();
$handle = fopen("links.txt", "r");
while(!feof($handle)) {
$str = fgets($handle);
$str=trim($str);
if(empty($str)) continue;
$links[] = $str;
}
fclose($handle);
$NumHrefLinks = 5; // $NumHrefLinks >= 5
$num = (!empty($_REQUEST['n']))? intval($_REQUEST['n']) : $NumHrefLinks;
if($num<1 || $num>=count($links)) $num=$NumHrefLinks;
$script = $_SERVER[SCRIPT_NAME] . "?n=$num&id=";
if(empty($_REQUEST['n'])) $num = (int)(count($links)/60);
$num=$NumHrefLinks;
$rand_keys = array_rand($links, $num);
$output = '<ul>';
$output2 = '<p>';
for($i=0; $i<$num; $i++) {
$output .= "<li><a href=\"".
($script. round($PagesCountApprox*rand()/getrandmax()))."\" title=\"".$links[$rand_keys[$i]]."\">".
$links[$rand_keys[$i]]."</a>\n";
$output2 .= "\n" . $links[$rand_keys[$i]] .", \n";
}
$output .= '</ul>';
$output2 .= '</p>';
$WML_title = $links[$rand_keys[0]];
$string0 = $links[$rand_keys[0]];
$string1 = $links[$rand_keys[1]];
$string2 = $links[$rand_keys[2]];
$string3 = $links[$rand_keys[3]];
$string4 = $links[$rand_keys[4]];
if(!empty($H)) {
$CopyrightRef .=<<<EOT
<p align="center">Copyright © <a href="$H">$H</a></p>
EOT;
}
$goodout = <<<EOF
<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">
<meta name="keywords" content="Здесь ваши ключевые слова"/>
<meta name="description" content="Здесь ваши ключевые слова2"/>
<title>$WML_title</title>
<style type=\"text/css\">
body { font-weight: normal; font-size: normal; font-family: georgia; color: $clmess; background-color: $clfon }
a:link,a:active,a:visited { text-decoration: underline; color : $cllink }
a:hover { text-decoration: none; color : $cllink }
</style></head>
<body bgcolor=\"$clfon\">
<p>
<center>
$banner_top1
$banner_top2
<br>
<big>$WML_title</big>
$output
$output2
<big>$string0</big>
<pre>
Сюда вставлять ключевые слова 1
</pre>
<small>$string1</small>
<pre>
Сюда вставлять ключевые слова 2
</pre>
<small>$string2</small>
<pre>
Сюда вставлять ключевые слова 3
</pre>
<small>$string3</small>
<pre>
Сюда вставлять ключевые слова 4
</pre>
<small>$string4</small>
<pre>
Сюда вставлять ключевые слова 5
</pre>
<center>
$banner_bottom1
$banner_bottom2
</p>
</body></html>
EOF;
echo $goodout;
?>