Quick Keyword Tool
This tool has been created to allow my PeerFly publishers quick access to a short list of keywords that they might want to use in their affiliate marketing campaigns. This list can be used for anything. For example, you mind find this tool helpful when trying to find keywords for a search campaign, PPV campaign, SEO campaign, etc.
Just enter your keyword below and let the tool do the rest!
[exec]
$term = trim($_GET['term']);
if ($term) {
$contents = file_get_contents(‘http://google.com/complete/search?q=’.urlencode($term).’&output=toolbar’);
$xml = simplexml_load_string($contents);
echo ‘
Keywords for ‘.$term.’
‘;
echo ‘
| Result | Keyword | Number of queries (estimated) |
| ‘.$result.’. | ‘.$keyword.’ | ‘.@number_format($queries).’ |
‘;
}
if ($list) {
echo ‘
Keyword List
‘;
echo ‘
This list is provided so you can easily copy and paste these keywords into whatever
tool you are using for your campaigns.
‘;
echo ‘
‘;
foreach ($list as $list_item) {
echo $list_item . ‘
‘;
}
echo ‘
‘;
}
[/exec]

