Hi, i want to know that how to get the yahoo back links from yahoo using yahoo API in PHP, please hep me out the way to do that Thanks
example
function getYahooLinks($domain) { $yahooAppId1 = "YOUR_YAHOO_KEY"; $yahoourl="http://search.yahooapis.com/SiteExplorerService/V1/inlinkData?appid=".$appid."&query=".$domain."&entire_site=1&omit_inlinks=domain&results=1&output=php"; $data = @file_get_contents($yahoourl); $results=unserialize($data); return $results['ResultSet']['totalResultsAvailable']; //$results[0][1]; }