
16.03.2008, 12:43
|
|
Banned
Регистрация: 11.08.2006
Сообщений: 1,522
Провел на форуме: 5128756
Репутация:
2032
|
|
вместо
$spisok = array(
'http://site1.com/test.php',
'http://site2.com/test.php',
'http://site3.com/test.php'
);
пропиши
$spisok = file('file.txt');
или
$spisok = explode("\n", file_get_contents('file.txt'));
|
|
|