我想为我的网页做一个搜索引擎。我的 mysql 数据库中有几个表,我希望它们在用户时合并
Table users
id name age country vip profile_image
1 nick 23 sweden 1 yes
2 michael 20 germany 0 no
3 laura 19 usa 1 yes
4 gary 33 china 1 yes
Table online
id user_id online
1 1 1
2 2 1
3 4 1
user_id 连接到 users 表中的 id
Now i have checkboxes
[ ] Those which are online
[ ] Those which are vip
[ ] Those with profile image
我用 PHP 对我的页面进行编码,并且我试图弄清楚如果选中某个复选框,如何在 sql 查询中包含某些搜索。我可以在这里有很多选择。例如,如果没有选中复选框,如果你想搜索那些在线的,我如何进入第二个表?
我希望你能明白我的意思。我真的希望有人可以帮助我,并给我一个 php & sql 查询的工作示例。
干杯!