View Single Post
Old 02-07-2008, 08:15 AM  
drocd
Confirmed User
 
Join Date: Aug 2007
Posts: 128
If you have fopen wrapper enabled, this should load all the urls, and populate $result with the page outputs.

PHP Code:
$urls = Array(
'url1',
'url2',
'url3');

$result = Array();
foreach(
$urls AS $url) {
$result[] = file_get_contents($url);

__________________
230-699

Last edited by drocd; 02-07-2008 at 08:16 AM..
drocd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote