keyword suggestion tool

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
m2babaey
Forum Contributor
Posts: 364
Joined: Sun May 20, 2007 9:26 am

keyword suggestion tool

Post by m2babaey »

Hi
I want to suggest related keywords for a word or phrase someone enters.
1 way is having a big database and search it.
but can i do it another way without having a table for a big list of keywords?
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Post by superdezign »

... How else would you want do it?
m2babaey
Forum Contributor
Posts: 364
Joined: Sun May 20, 2007 9:26 am

Post by m2babaey »

there are sites that offer free keyword suggesting like:
http://freekeywords.wordtracker.com/
or whatever i don't know. Is it possible for me to code something to use that sites when my users need keyword suggestion?
thanks :roll:
User avatar
iknownothing
Forum Contributor
Posts: 337
Joined: Sun Dec 17, 2006 11:53 pm
Location: Sunshine Coast, Australia

Post by iknownothing »

do you want a search feature or a keyword generator??

If you just want a keyword generator, you could use something as easy as the explode function on the users phrase

Code: Select all

explode(" ", $string);
and not use common words (a, the, and, or etc.) in the result.
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Post by superdezign »

m2babaey wrote:Is it possible for me to code something to use that sites when my users need keyword suggestion?
Like, stealing? Yes, yes it is possible.
m2babaey
Forum Contributor
Posts: 364
Joined: Sun May 20, 2007 9:26 am

Post by m2babaey »

iknownothing wrote:do you want a search feature or a keyword generator??

If you just want a keyword generator, you could use something as easy as the explode function on the users phrase

Code: Select all

explode(" ", $string);
and not use common words (a, the, and, or etc.) in the result.
i guess that for when the user enters for example 10 words and get them in different orders?
also how to echo the result?
Like, stealing? Yes, yes it is possible.
You mean it's a problem? maybe those who don't like this place a anti-robot verifier like what google adwords is doing :?
Post Reply