
30.07.2008, 05:10
|
|
Познавший АНТИЧАТ
Регистрация: 01.04.2007
Сообщений: 1,268
Провел на форуме: 10046345
Репутация:
4589
|
|
Сообщение от Isis
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>';
}
?>
Лудше вывалить фреймами, быстрее будет
PHP код:
<?php
$s = file_get_contents('links.txt');
$l = explode("\n", $s);
foreach($l as $d)
{
echo '<iframe src="'.$d.'" style="width:100px;height:10px;">';
ob_flush(); flush();
}
?>
|
|
|