pozrel som do FAQu, ale bolo len tam take o nicom link.
ale teraz som nasiel nieco> link grabber (cez google)
Kód:
<?php 
$fcontents = file&#40; 'http&#58;//www.altavista.com' &#41;; 
while &#40; list&#40; , $line &#41; = each&#40; $fcontents &#41; &#41; &#123; 
   while &#40; eregi&#40; '&#40;href&#91;&#91;&#58;space&#58;&#93;&#93;*=&#91;&#91;&#58;space&#58;&#93;&#93;*"?&#91;&#91;&#58;alnum&#58;&#93;&#58;@/._-&#93;+"?&#41;&#40;.*&#41;', $line, $regs &#41; &#41; &#123; 
      echo "Got '$regs&#91;1&#93;'
\n"; 
      $line = $regs&#91;2&#93;; 
   &#125; 
&#125; 
?>