-
The snow goose need not bathe to make itself white. Neither need you do anything but be yourself.
Lao Tzu Recent Comments
Tags
analytics api bing curl development ga google granny gift shop marketing jquery juust latent semantic indexing links mysql namespaces optimisation pagerank php PIYF plugin robots scrape sem seo seo tips and tricks serp simplexml template tool trackback trends twitter vba vcard widget wordpress xhr xml-rpc
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
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
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