I need script that will return number of google results for multiple keywords entered. If anyone already has this kind of script or knows how to code one, please PM me.
Tnx
Edit:
Nvm, I've just found one.. Here it is, if anyone else needs it:
PHP Code:
<?php
$file = file('path to file/for.txt');
$results = '';
foreach ($file as $line) {
$data = file_get_contents("http://www.google.com/search?hl=en&q=" . urlencode($line) . "&btnG=Google+Search");
preg_match('/of about <b>([0-9,]*)?<\/b>/si', $data, $number);
$results .= $line . " " . $number[1] . "<br />";
}
echo $results;
?>
Bookmarks