Category Archives: serp

how to get bing api search results in MsOffice VBA

For the loyal VBA fans a quick snippet to grab search results from Bing in Access or Excel. There are few articles on the web about that, and that is a shame. So lets add some content on it to … Continue reading

Posted in bing, seo, seo tips and tricks, serp, tool | Tagged , , , | 1 Comment

quick note : serp plugin beta

I am developing a new google serp plugin for wordpress. I developed it over the weeknd on wp2.8, it should run on anything with a ‘shutdown’ hook and jquery. I will be adding some other stuff to it over the … Continue reading

Posted in juust, serp, wordpress | Tagged , , | 3 Comments

bing

for completeness : php bing serp scraping : $query = 'serp'; $page = 1; $start = ($page-1)*10; $url = 'http://www.bing.com/search?q='.urlencode($query)."&first=".($start+1);   $curl_handle = curl_init(); curl_setopt($curl_handle,CURLOPT_URL, $url); curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,2); curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1); $return = curl_exec($curl_handle); curl_close($curl_handle);   $parts = split('<h3>', $return);   … Continue reading

Posted in php, serp | Tagged , | 1 Comment