Webmaster Forum


Go Back   Webmaster Forum > Marketing Forums > Webmaster Revenue > Affiliate Revenue
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Affiliate Revenue Discuss ways to earn with affiliate programs.

   

Reply
 
LinkBack Thread Tools Display Modes
Old 05-05-2007, 10:08 PM   #1 (permalink)
Contributing Member
 
tdd1984's Avatar
 
Join Date: 12-03-06
Location: Indiana
Posts: 1,268
iTrader: 0 / 0%
Latest Blog:
None

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?
tdd1984 is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-25-2007, 08:49 PM   #2 (permalink)
Inactive
 
Join Date: 08-08-07
Location: Hermosa Beach CA
Posts: 20
iTrader: 0 / 0%
Latest Blog:
None

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
warner444 is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-26-2007, 12:48 AM   #3 (permalink)
Banned
 
Join Date: 08-21-07
Posts: 399
iTrader: -2 / 25%
Latest Blog:
None

monhunter needs to post some quality posts
keyword country is good
monhunter is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-26-2007, 08:17 AM   #4 (permalink)
Contributing Member
 
MrCat's Avatar
 
Join Date: 08-08-07
Location: World Wide Web
Posts: 1,206
iTrader: 2 / 100%
Latest Blog:
None

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.
MrCat is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-30-2007, 10:31 AM   #5 (permalink)
Inactive
 
Join Date: 07-08-07
Posts: 34
iTrader: 0 / 0%
Latest Blog:
None

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
MagnaLifeOdin is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-01-2007, 03:20 PM   #6 (permalink)
Junior Member
 
Join Date: 03-20-07
Posts: 8
iTrader: 0 / 0%
Latest Blog:
None

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;
    }
}
?>
nickdean is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Marketing Forums > Webmaster Revenue > Affiliate Revenue

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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Generating Traffic From Digg Musica Marketing Forum 12 10-30-2007 07:40 AM
Am I Generating SPAM??? Buskerdoo Computers & Internet 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! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 11:08 AM.
© Copyright 2008 V7 Inc