为网站添加多个类别搜索功能

时间:2014-03-09 23:39:49

标签: html search web categories

我正在为租赁代理商建立网站。

我想知道将多个类别(价格,位置,卧室数量)搜索整合到网站的最佳方式,以便用户可以选择/输入这些内容并显示结果。

如果有人可以帮助我,我将非常感激。

1 个答案:

答案 0 :(得分:0)

我认为您的案例是具有多个列的关系数据库

CREATE TABLE `places` (
  `price_in_cents` int(11),
  `location` varchar(255),
  `num_of_bedrooms` tinyint(2)
)

您可能还想考虑将位置分解为单独的字段,例如国家/地区,州,城市......

在这种情况下,您可以使用SQL,如:

select * from places where price_in_cents between 100 and 10000000 and location like '%Francisco%' and bedrooms between 1 and 3;