PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of Raul   PHP Parse Google Search Results   test.php   Download  
File: test.php
Role: Example script
Content type: text/plain
Description: testing the class
Class: PHP Parse Google Search Results
Search for keywords in Google and extract results
Author: By
Last change:
Date: 10 years ago
Size: 182 bytes
 

Contents

Class file image Download
<?php
require_once 'GoogleSearchCrawler.class.php';
$i=1;
$crawler = new GoogleSearchCrawler();
while(
$i < 200){
   
$crawler->DoIt('string ' . $i);
   
$i++;
   
//usleep('20000');
}