Jump to content

Help with a SIMPLE Spider


JSHINER

Recommended Posts

<?php
$seed = 'http://www.site.com/?page=10';
$data = file_get_contents($seed);
if (preg_match_all("/http:\/\/[^\"\s']+/", $data, $links)) 
{

header("Content-type: text/plain");

     for ($i=0;$i<count($links[0]);$i++) 
     {
          echo $links[0][$i]. "\n";
     }
}
?>

 

The above gets all links from a page. But I need it to not only do page 10, but up to page 50. Can this spider multiple pages? If so, how can I do it?

 

 

 

Link to comment
Share on other sites

for($i=10;$i<=50;$i++){
$seed = "http://www.site.com/?page=$i";
$data = file_get_contents($seed);
     if (preg_match_all("/http:\/\/[^\"\s']+/", $data, $links)){
     header("Content-type: text/plain");
     echo "Page $i\n:";
     for ($j=0;$j<count($links[0]);$j++){
          echo $links[0][$i]. "\n";
     }
     echo "\n\n\n";
     }
}

Link to comment
Share on other sites

<?php
header("Content-type: text/plain");
for ($n=1;$n<50;$n++) 
{
$seed = "http://www.site.com/?page=$n";
$data = file_get_contents($seed);
if (preg_match_all("/http:\/\/[^\"\s']+/", $data, $links)) 
{
     for ($i=0;$i<count($links[0]);$i++) 
     {
          echo $links[0][$i]. "\n";
     }
}
}
?>

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.