Question

I have a set of urls on the form of

http://www.domain.com/directory/page.php?id=xxxx

How do I iterate through the different ids and save the resulting pages?

Was it helpful?

Solution

for($i=1;$i<100;$i++)
{
   $results[]=file_get_contents("http://www.domain.com/directory/page.php?id=$i");
}
print_r($results);

Or if you already have the ids in any array you could loop over them

foreach($arrayOfIDS as $id)
{
   $results[]=file_get_contents("http://www.domain.com/directory/page.php?id=$id");
}
print_r($results);
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top