Webmaster Forum

Go Back   Webmaster Forum > Marketing Forums > Affiliate Marketing Forum

Affiliate Marketing Forum Discussions concerning affiliate programs, affiliate marketing tips and techniques, and ways to increase earnings through referral programs. This forum is NOT for promoting your own affiliate program or referral link.


Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 05-05-2007, 10:08 PM
tdd1984's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 12-03-06
Location: Indiana
Posts: 1,262
iTrader: 0 / 0%
tdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebody
generating keywords and adwords

any one know off a good keyword generator for adwords to run affliaites through?
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #2 (permalink)  
Old 08-25-2007, 08:49 PM
Junior Member
Latest Blog:
None

 
Join Date: 08-08-07
Location: Hermosa Beach CA
Posts: 20
iTrader: 0 / 0%
warner444 is liked by many
Send a message via ICQ to warner444 Send a message via AIM to warner444 Send a message via Yahoo to warner444 Send a message via Skype™ to warner444
keywords tools

I use a few different keywords tools

this is a great free one
http://tools.seobook.com/general/keyword/#results

Google has one at
https://adwords.google.com/select/KeywordToolExternal

(google has great free instructional videos about adwords if you are going to use adwords learn a lot it first and especially about "keyword relevence")

Google adwords help center
https://adwords.google.com/support/?hl=en_US

I have used "Niche Inspector" which is pretty good.

Recently I got "Keyword Elite" I am pretty impressed. It will dig really deep across multiple search engines. (to get littte used cheaper and less competative keywords)

nichbot.com is a good online keyword search tool, monthly membership, it's interface is a little complicated but it does a huge amount of search and will return results in many ways and has filters to narrow to the best useable terms.

There are some related just to adwords, like Adwords Accelorator, I kind of liked it but maybe his next version will be more worth it.

There are a few other big ones out there, if you search and find others I recomend you find some real reviews about them (not just affiliates with phoney review sites). the Warrior forum has a product review section.

Last edited by warner444; 08-25-2007 at 08:51 PM. Reason: punctuation error
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #3 (permalink)  
Old 08-26-2007, 12:48 AM
Banned
Latest Blog:
None

 
Join Date: 08-21-07
Posts: 389
iTrader: -2 / 25%
monhunter needs to post some quality posts
keyword country is good
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #4 (permalink)  
Old 08-26-2007, 08:17 AM
MrCat's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 08-08-07
Location: World Wide Web
Posts: 1,185
iTrader: 6 / 100%
MrCat is a jewel in the roughMrCat is a jewel in the roughMrCat is a jewel in the roughMrCat is a jewel in the roughMrCat is a jewel in the roughMrCat is a jewel in the roughMrCat is a jewel in the roughMrCat is a jewel in the rough
I have used Niche Inspector in the past also Works just good.
__________________
Red Tree Web Directory
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #5 (permalink)  
Old 08-30-2007, 10:31 AM
Member
Latest Blog:
None

 
Join Date: 07-08-07
Posts: 34
iTrader: 0 / 0%
MagnaLifeOdin is liked by many
For a free keyword generator I would have to agree with

https://adwords.google.com/select/KeywordToolExternal

After all it's straight from the source as far as Adwords goes
Digg this Post!Add Post to del.icio.us
Reply With Quote
  #6 (permalink)  
Old 09-01-2007, 03:20 PM
Junior Member
Latest Blog:
None

 
Join Date: 03-20-07
Posts: 7
iTrader: 0 / 0%
nickdean is liked by many
I use the Overture keyword tool, Here is a script for it will help at all.

PHP Code:
<?php
class KeywordManager
{
     
//class variables
     
var $keywordArray = array();

    function 
KeywordManager()
    {
        
//init function
    
}
    function 
saveKeywordFile($fileName)
    {
         
/*
         saves file with specified array of keywords and file name
         example: saveKeywordFile("saveas.txt",$keywordArray)
        */
        
$keywordArray $this->keywordArray;
        if (
count($keywordArray) > 0)
        {
             if (
file_exists($fileName))
             {
                
//File name already exist
                
return 0;
            }
            
$filePointer fopen($fileName,"w");
            if (!
is_resource($filePointer))
            {
                
//Error creating file
                
return 0;
            }
            foreach (
$keywordArray as $keyword)
            {
                
fwrite($filePointer,$keyword."\n");
            }
            return 
1;
        } else
        {
            
//Keyword array is empty
            
return 0;
        }
    }

    function 
loadKeywordFile($fileName)
    {
        
/*
        loads a keyword file, returns array on success and 0 on failure
        example: loadKeywordFile("keywords.txt");
        */
        
if (is_readable($fileName))
        {
            
$filePointer fopen($fileName,"r");
            if (!
is_resource($filePointer))
            {
                
//No resource
                
return 0;
            }
            
$fileData "";
            while (!
feof($filePointer))
            {
                
$fileData .= fgets($filePointer,128);
            }
            
$keywordArray explode("\n",$fileData);
            foreach (
$keywordArray as $keyword)
            {
                
array_push ($this->keywordArray,$keyword);
            }
            return (
$this->keywordArray);    
        } else 
        {
             
//File not readable
            
return 0;
        }
    }

    function 
overtureKeywordSuggestions ($baseKeyword)
    {
        
$curlHandle curl_init();
        
curl_setopt($curlHandle,CURLOPT_URL,"http://inventory.uk.overture.com/d/searchinventory/suggestion/");
        
curl_setopt($curlHandle,CURLOPT_USERAGENT,"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.2) Gecko/20070219 Firefox/2.0.0.2");
        
curl_setopt($curlHandle,CURLOPT_RETURNTRANSFER,1);
        
curl_setopt($curlHandle,CURLOPT_REFERER,"http://inventory.uk.overture.com/d/searchinventory/suggestion/");
        
curl_setopt($curlHandle,CURLOPT_POST,1);
        
curl_setopt($curlHandle,CURLOPT_POSTFIELDS,"mkt=uk&lang=en_GB&term=".urlencode($baseKeyword)."&x=11&y=5");
        
$returnedHtml curl_exec($curlHandle);
        
preg_match_all("|<font face=\"verdana,sans-serif\" size=1 color=#000000>(.*)</a></td>|U",$returnedHtml,$keywordMatches);
        foreach (
$keywordMatches[1] as $keyword)
        {
             if (
array_search($keyword,$this->keywordArray)==0)
             {
                
array_push($this->keywordArray,$keyword);
            } else
            {
                
//Keyword exist
                
return 0;
            }
        }
        return 
$this->keywordArray;
    }
}
?>
Digg this Post!Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Marketing Forums > Affiliate Marketing Forum

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Generating Traffic From Digg Musica Social Network Marketing 12 10-30-2007 07:40 AM
Am I Generating SPAM??? Buskerdoo Tech Talk 6 09-26-2006 09:59 AM
Adwords Keywords for Website Mrblogs Google Forum 6 04-13-2006 12:52 PM
Link generating streams.... nate_king1 SEO Forum 9 02-27-2006 09:17 PM


Sponsor Links
Get exposure! Contextual Links V7N SEO Blog V7N Directory


Site Navigation: v7n Home .::. Graphics .::. Scripts .::. V7N Web Directory .::. V7N Technology Blog .::. V7N Affiliate Program .::. Advertise

Partners: Search Engine Optimisation .::. Dedicated Server Hosting .::. Webmaster Talk .::. CPA Affiliates .::. Dedicated Server Hosting

Site Sponsored by a Hivelocity Dedicated Server.
SEO Consult, International SEO Experts
Dedicated Server Hosting
All times are GMT -7. The time now is 01:44 PM.
© Copyright 2008 V7 Inc
Powered by vBulletin
Copyright © 2000-2009 Jelsoft Enterprises Limited.


Search Engine Optimization by vBSEO 3.3.0 ©2009, Crawlability, Inc.