fiha, chcel som spravit thread na pregenerovanie, ale ked uz je tu 
ako treba spravit toto:
1.stranka: randomizer (link.txt - koncovky-napr.
ictures,programs)
Kód:
<?php
$handle = fopen("link.txt", "r");
while (!feof($handle)) {
$links[] = fgets($handle, 4096);
}
fclose($handle);
$header = "Location: http://www.stranka.php?".$links[rand(0,count($links)-1)];
header($header);
?>
redirection pomocou koncovky:
Kód:
<? {
header ("Location: http://www.stranka.php?xxx");
exit;
} ?>
xxx=koncovka v txt(pictures,programs)
2.stranka
www.stranka.php?xxx
v stranke mam timer:
Kód:
<META HTTP-EQUIV="REFRESH" CONTENT="15;URL=http://www.stranka2.php?xxx">
xxx=zase koncovka z link.txt
THX!