Jump to content

GDop

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Everything posted by GDop

  1. @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 !
  2. Thanks, @mattal999, but there is something wrong. It counts only domain from first line and shows the same result for rest of domains.
  3. 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
  4. 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.
×
×
  • 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.