buzzcore
Junior Member
- Apr 7, 2013
- 174
- 49
Hey guys,
I made this a while ago and have been using it to generate big lists of keywords based on Google search suggest. Here is an example of what it does...
Will generate up to 6,760 keywords with this phrase in front of it like so...
The script is as follows, make it a php file and upload it to your server. One word of warning though, I'm sure if you spam this script a lot every day Google will ban your IP, so use it sparingly. I have used it once a day since I made it and I havn't been hit with an IP ban yet.
I made this a while ago and have been using it to generate big lists of keywords based on Google search suggest. Here is an example of what it does...
Will generate up to 6,760 keywords with this phrase in front of it like so...
Code:
[COLOR=#ffffff][FONT=arial][SIZE=2]how to write aaron in arabic
how to write aaron in chinese
how to write aaliyah in arabic
how to write aaron in japanese
how to write aahil in urdu
how to write ashirwad in hindi
how to write aaron in hebrew
how to write aa degree on resume
...
(6,000 more results here)
..
how to write zubair in arabic
how to write chi in chinese
how to write zuko in chinese
how to write zu in japanese keyboard
how to write on your zwinky profile
how to write your name on zwinky
how to write zx spectrum games
how to write a zx spectrum emulator
how to write zynga
how to write to zynga support
how to write email to zynga
how to write a complaint to zynga
how do you write to zynga
how to write a letter to zynga
how to write a message to zynga
how to write a prescription for zyban[/SIZE][/FONT][/COLOR]
The script is as follows, make it a php file and upload it to your server. One word of warning though, I'm sure if you spam this script a lot every day Google will ban your IP, so use it sparingly. I have used it once a day since I made it and I havn't been hit with an IP ban yet.
Code:
[COLOR=#ffff00]<?php
if (isset($_POST["keyword"]) && $_POST['keyword'] !== "") {
$alphas1 = range('A', 'Z');
$alphas2 = range('A', 'Z');
$keyword = $_POST['keyword'];
foreach ($alphas1 as $a1) { foreach ($alphas2 as $a2) {
$xml = simplexml_load_file("http://suggestqueries.google.com/complete/search?output=toolbar&hl=en&q=$keyword.' '.$a1.$a2");
foreach ($xml->children() as $child) {
foreach ($child->suggestion->attributes() as $dta) {
echo "<br>";
echo $dta;
} } } }} else {?>
<form action="<?php $_SERVER['PHP_SELF'];?>" method="post">Keyword: <input type="text" name="keyword" required><input type="submit"></form>
<?php}?>[/COLOR]
Hope it is of some use to you all!:drinking2