|
Posted by Anthony Fojas on 10/11/47 11:53
I'm not sure I follow what you're trying to do. I think you're saying
you want to go to 'http://www.somedomain.nl/process.php?url=' and
concatenate the lines fo your text file to that url.
some thing like,
foreach($lines as $line) {
file("http://www.somedomain.nl/process.php?url=".$line)
}
I think...
-Anthony
Samuël van Laere wrote:
> 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
[Back to original message]
|