PDA

View Full Version : Search Features


srule_
09-21-2007, 04:06 AM
Anyone know of any good tutorials or books that explain how to make search for a site.

Ex, I want to make a content manager to upload my pictures to a gallery, then i want user to be able to search through the pictures based on color/name/theme. ext...

timgolding
09-21-2007, 10:18 AM
Hi

I think the best way to create a search algorithm is to use the META data tags. It's what they are there for. I usually use the keywords meta description to index the keyterms for that document, and then I can use

get-meta-tags (http://uk.php.net/manual/en/function.get-meta-tags.php)
to read the information.

To extract the meta data from the files. Alternatively you could use a DB driven approach, that may be more appropriate for a CMS.

Hope this is of some help