Database search engine

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
dramiditis
Forum Newbie
Posts: 13
Joined: Tue Jan 22, 2008 7:23 am

Database search engine

Post by dramiditis »

Hi,
I'm new with PHP and I have one problem:
I would like to create search engine to search trought my table fiels.
Can anybodu help me?
User avatar
Zoxive
Forum Regular
Posts: 974
Joined: Fri Apr 01, 2005 4:37 pm
Location: Bay City, Michigan

Re: Database search engine

Post by Zoxive »

Code: Select all

SELECT * FROM `table` WHERE `tags` LIKE '%Term%'
I would suggest... searching, this has been discussed numerous times, here and on the web.

http://www.google.com/search?q=php+database+search
Post Reply