Jump to content

searching multiple fields


1internet

Recommended Posts

I want to search across multiple fields, e.g.

city = London

category = restaurant

name = Acme Steakhouse

Description = the best steaks in town, fillet, rump, t-bone

 

So if I was searching for the above result, I would want it to be displayed with searches like "London restaurant", "London Steakhouse", "t-bone restaurant", "Acme Fillet", you get the idea, I just can't work out how to transfer across multiple search words to each field. In fact I really have no idea how this would be done.

Is there a trick to this?

Link to comment
Share on other sites

Not sure if I completely understood the question but here are my thoughts...

 

Query = "London Restaurant"

Use a pre processor like PHP to break it up and set it each section to a variable

$piece1='London'

$piece2='Restaurante'

 

 

SELECT * FROM table
WHERE
city RLIKE '$piece1|$piece2'
OR
category RLIKE '$piece1|$piece2'
OR
name RLIKE '$piece1|$piece2'
OR
description RLIKE '$piece1|$piece2'
Order by city, category, name, description

 

Also there is the LIKE (%$piece1%)

and

city IN('london','restaurante','steak) operators

Edited by Failing_Solutions
Link to comment
Share on other sites

There are many ways to handle a string of words in php

 

for example

 

Search = London Steak Resturante

<?php
$string=$_POST['search'];
$array=explode(' ',$string); // Explode on space
$piece1=$array[0]; ///London
$piece2=$array[1]; ///Steak
$piece3=$array[3]; ///Resturante
?>

Sometimes like in the case of a search you may not know how many pieces you'll have so then you would use loops like

foreach($array as $value) {

do something;

}

Searchs can get very complicated because the idea is to return the results that are the most appropriate. I've seen large Content Management Systems with wreched searches. Google on the other hand is probably the gold standard for getting the best search results.

 

All that said it is possible to do this sort of thing

Edited by Failing_Solutions
Link to comment
Share on other sites

Yea, I want to keep it fairly simple, but just make sure that all the results that should be shown are, e.g. london restaurants search would return all the restaurants in London. I am not too concerned about order just yet, I guess that is going to be another kettle of fish.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.