Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.31 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2.  
  3. function getGoogleHotSearches(){
  4.         $gHotSearchesURL = 'http://www.google.com/trends/hottrends/atom/hourly';
  5.         $gHotSearchData = simplexml_load_string(DownloadUrl($gHotSearchesURL));
  6.                 if(!empty($gHotSearchData)){
  7.                 $hotSearchesHTML = "<ul>";
  8.                 print_r($gHotSearchData->entry->content[0]);
  9.  
  10.         }
  11. }
  12. ?>