Keyword scrambler tool?

Status
Not open for further replies.

irideflatland

New member
Dec 23, 2008
369
2
0
I've been posting a little on Craigslist, using an image with text on it, and just adding keywords to the post. As long as I change my keywords up, the posts go through. Is there a tool that can do this for me though to save me a little bit of time?

This is an example of what I need:

Post1Keywords: Key1, key2, key3, ke4.....

Post2Keyords: Key2, Key5, Key1, key3....

I just need something to change the order of the keywords.
 


You could do that in almost any scripting/programming language, such as PHP...

PHP:
$keywords = array('word1','word2');
shuffle($keywords);
foreach ($keywords as $keyword){
  echo $keyword.',';
}
...for example.
 
There's some code for various ways of scrambling/mixing up words/sentances/paragraphs in the WickedFire code tool chest located up-top in a sticky... bofu i believe was the source.
 
Status
Not open for further replies.