i have huge list of keywords and i need check them for Quantity of results presented in Google. is there any tool or application to perform this operation quick ?
Use https://adwords.google.co.uk/select/KeywordToolExternal just enter one per line and it will check them all for you.
its check Advertiser Competition, and don't checks quantity of results in serp. i mean this for ex.: Results 1 - 10 of about 35,200,000 for digital point. (0.05 seconds). how to check each keyword per line for results ???
it can be done via this fucntion: $keys = array("viagra", "buy viagra", "tramadol", "buy tramadol"); checkKeys($keys); function checkKeys($keys) { for ($i=0; $i<count($keys); $i++) { $keys[$i]=str_replace(" ", "+", $keys[$i]); $keys[$i]=str_replace("\n", "", $keys[$i]); $keys[$i]=str_replace("\r", "", $keys[$i]); $query="http://www.google.com/search?q=".$keys[$i]; $fhandle=fopen($query, "r"); $file=""; while(!feof($fhandle)) { $file.=fread($fhandle, 512); } ereg("about <b>([0-9,]*)</b>", $file, $regs); $count=str_replace(",", "", $regs[1]); $keys[$i]=str_replace("+", " ", $keys[$i]); $fhandle = fopen("keys.txt", "a"); fwrite($fhandle, $keys[$i]."|".$count."|\r\n"); fclose($fhandle); print $keys[$i]." ".$count."<br>"; } } PHP: but it doesnot use saop api code, so when google will spit out captcha sript stops ;(