Jump to content

Mass check Google site


GDop

Recommended Posts

Hello, I found some little php code to check google index of any site.

<?php

function checkSite($www)
{
  $ch = curl_init('http://www.google.pl/search?hl=pl&q=site%3A'.trim($www).'&btnG=Szukaj&source=hp');
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  $sHtml = curl_exec($ch);
  preg_match('#\<div id=resultStats\>.*([0-9,]+) wynik#Ui', $sHtml, $aMatches);
  curl_close($ch);
  return (int)str_replace(',', '', $aMatches[1]);
}

echo checkSite('domain.com');
?>

 

But to check any site I must edit this code and add new site manually. I'm big beginner in PHP.

I want to have a area on browser side to add many sites, and receive result, like in this code which I add. above.

Can anybody help me with this?

 

PS. Sorry for my poor English.

Link to comment
Share on other sites

Something like this

<?php
function checkSite($www){
  $ch = curl_init('http://www.google.pl/search?hl=pl&q=site%3A'.trim($www).'&btnG=Szukaj&source=hp');
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  $sHtml = curl_exec($ch);
  preg_match('#\<div id=resultStats\>.*([0-9,]+) wynik#Ui', $sHtml, $aMatches);
  curl_close($ch);
  return (int)str_replace(',', '', $aMatches[1]);
}

if ($_POST['www']){
     echo checkSite($_POST['www']);
}else{
     print ('<form method="POST"><p>Check this site: http://www.<input type="text" name="www" size="20"><input type="submit" value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p></form>');
}
?>

Link to comment
Share on other sites

Thank You so much. It's almost this what I wanted ;)

 

But could You help me and do this with textarea (or something like that?), so when I add a few domains in new lines, eg:

domain1.eu
domain2.info
domain3.com

 

I will recive a result with indexed pages of all added domains, eg:

1222 (indexed pages in Google)
33223 (indexed pages in Google)
1233 (indexed pages in Google)

 

I can't handle with this :(

 

Link to comment
Share on other sites

<?php

function checkSite($www) {
  $ch = curl_init('http://www.google.pl/search?hl=pl&q=site%3A'.trim($www).'&btnG=Szukaj&source=hp');
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  $sHtml = curl_exec($ch);
  preg_match('#\<div id=resultStats\>.*([0-9,]+) wynik#Ui', $sHtml, $aMatches);
  curl_close($ch);
  return (int)str_replace(',', '', $aMatches[1]);
}

if($_POST['www']) {
    $links = explode("\n", $_POST['www']);
    foreach($links as $link) {
        echo checkSite($_POST['www']) . "<br />";
    }
} else {
    print ('<form method="POST"><textarea name="www" rows="20" cols="100"></textarea><br /><br /><input type="submit" value="Submit" name="B1"> <input type="reset" value="Reset" name="B2"></form>');
}

?>

Link to comment
Share on other sites

@mattal999 - Thank You so much, You're great. Thanks!

@MrAdam - Yes, If you send too many requests to Google , you'll be must verify yourself by Captcha. But this script is only for my personal use and it's on server not on my localhost... ;)

 

Anyway, thanks for help !

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.