/* ============================================================================================================ Version : 1.0 Description : Related Link Suggestion Tool Copyright : (c) SeoBook.com, licensed under the GPL ( http://www.gnu.org/licenses/gpl.txt ) Function : Allows you to search for phrases that may find sites willing to link at your site. ============================================================================================================ */ include '../header.php'; include 'clsGoogle.php';$google=New google; include 'clsYahoo.php';$yahoo=New yahoo; $keywords=file('keywords.txt'); $keyword_0=$_REQUEST['keyword_0']; $keyword=$_REQUEST['keyword']; include 'form.php'; switch ($_POST['c']) { case '1': $keyword_0=$keywords[$keyword_0]; if($_REQUEST['type']=='quotes') $keyword_0='"'.$keyword_0.'"'; if($_REQUEST['type']=='title') $keyword_0='intitle:'.$keyword_0.''; $keyword=$keyword.' '.$keyword_0; echo 'Searched Phrase: '.$keyword.''; $links=$google->getTopResults($keyword,100); //extracting data from google $tmp=$yahoo->getTopResults($keyword,100); //extracting data from Yahoo $links=array_merge($links,$tmp); $links=array_unique($links); include 'results.php'; //showing results break; } include '../footer.php'; ?>