Adwords Keywords Tool

This is a simple script I used to run on my old site that a few people found useful, so I thought I would integrate here embedded on a Wordpress page, which isn’t always a simple task.

Version 0.10:

First version of this script for public release. Currently limited to a maximum of 6 words per line.

To Do

I used to have a long “To Do” list

If you want lots of additional features, please let me know

How it Works

Simply paste your unformatted keyword list in the box below and submit.
Typical results are 30x the number of keywords, especially if they are 4 – 6 words in length.
I would suggest no more than 50 keywords per keyword group, although the script doesn’t have any restrictions.
I don’t store the keywords you use in any way – it is impossible for me to prove that, but you have my word.

Enter your keyword list

$keywords=$_POST['keysin'];
$urlstem=$_POST['myurl'];
$extension=$_POST['extchar'];
$lines = explode("\n",$keywords);
$exturl = urlencode($extension);

array_walk($lines, 'trim_value');
echo '

‘;
echo ‘

Your Keywords for Adwords

‘;
echo ‘

';
echo '';
echo '

‘;
echo “
Total number of keywords processed:- ” . count($lines,1);

function trim_value(&$value)
{
$value = trim($value);
}

?>