File size: 764B
<?
include ('config.php');
$handle = file ("linkbase.txt");
$mx=count($handle);
$idpage1= rand(0,$mx-1);
$idpage2=rand(0,$mx-1);
echo '
<html>
<head>
<meta http-equiv="Refresh" content="'.$SETTING["refreshtime"].'">
<title>Your Site Rotator V 0.0.1</title>
</head>
<frameset rows="'.zv().'">
';
$row=1;
while (@$row<=$SETTING["numframes"])
{
$row++;
echo
'
<frame name="'.$row.'" src="'.$handle[rand(0,$mx-1)].'">
';
}
echo
'
<noframes>
<body>
<p>Для работы программы необходима поддержка фреймов вашим браузером.</p>
</body>
</noframes>
</frameset>
</html>
';
function zv()
{
require ('config.php');
$numzv=2;
$rs="*";
while ($numzv<=$SETTING['numframes'])
{
$numzv++;
$rs.=",*";
}
return $rs;
}
?>