|
Posted by Samuλl van Laere on 07/19/06 21:57
Currently I use a script that needs a lot of work to maintain,
I call it like this:
http://www.somedomain.nl/process.php?url=http://www.somedomain.nl/page/1/
and would need to replace the url by hand to process another page.
I'm just wondering how to automate this process.
So i've written a full list of a url's that need to be processed
and have written it to a file:
links.txt
Next I put the contents of this file into an array ($lines):
$filename="links.txt";
$lines = array();
$file = fopen($filename, "r");
while(!feof($file)) {
//read file line by line into a new array element
$lines[] = fgets($file, 4096);
}
fclose ($file);
But how can I walk each item in the array with GET (or POST)?
Basicly the script would need to process the first item, before
starting with the next in line.
Any thoughts?
Cheers,
Sam
Navigation:
[Reply to this message]
|