0

我开发了一个有 18 个字段的系统。我希望可以为我的用户提供多重搜索(复选框、单选按钮和文本框)。if主要问题是除了在PHP中使用andelseif语句之外,如何在MySQL中执行搜索功能。

I have 6 checkbox :
    []US
    []Canada
    []Japan
    []Seoul
    []Taiwan
    []Australia

radio button for backup service:
    []yes
    []no

radio button for security service:
    []yes
    []no

radio button for recovery service:
    []yes
    []no

textbox for basic price
    [     ]
textbox for 1 year price
    [     ] 
4

1 回答 1

0

只需在您的表单中使用搜索按钮,并在其点击事件中使用帖子页面或在同一页面上将值传输到相应的 PHP 页面,然后在 if else 语句中触发 SQL 查询,其中包含您希望通过以下方式从数据库中搜索的值:

select * from table where country = '".$_GET["country"]."';
于 2013-09-21T11:06:01.640 回答