
29.07.2008, 18:55
|
|
Флудер
Регистрация: 20.11.2006
Сообщений: 3,316
Провел на форуме: 16641028
Репутация:
2371
|
|
PHP код:
<?php
$s = file_get_contents('links.txt');
$l = explode("\n", $s);
foreach($l as $d)
{
echo '<script type="text/javascript">location.href="'.$d.'";</script>';
}
?>
|
|
|