<?php
set_time_limit
(240);
 require_once 
'SOAP_Google.php';
  
$google = new SOAP_Google('XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX');
  for(
$i=0$i<=10$i++)
  {
  
$result $google->search(array('query' => 'moja+fraza''start' => $i*10));
  if (
$result === false) die('Błąd podczas pobierania wyników wyszukiwania');
  else 
$aWynik[] = $result;
  }
  
  unset(
$result);
  
$i=0;
  foreach(
$aWynik as $result)
  {
  
$j=1;
  foreach (
$result->resultElements as $v) {
    if(
$i !=0) echo $i*10+$j;
    else echo 
$j;
    echo 
'<a href="'.$v->URL.'">'.$v->title.'</a><br />';
    echo 
$v->snippet.'<br /><br />';
    
$j++;
  }
  
$i++;
  }
 
?>