0

我有一个带有 3 个文本框的搜索表单供用户输入。

Keyword text box
Name text box
Date text box

现在我必须做出 6 个“如果”来满足用户的选择。

有什么办法我不必做这么多“如果”?

如果用户选择填充所有 3 个文本框,则示例代码:

SELECT * FROM <table> WHERE keyword=<keyword txbox> AND Name = <name txtbox> AND Date = <date txtbox>
4

2 回答 2

0

原始示例,没有消毒:

<?php
$op=array('keyword','name','date');
$_POST=array('keyword'=>'a','name'=>'b','date'=>'c');

    $q="SELECT * FROM FOO WHERE ";

foreach ($op as $o){
    if(!empty($_POST[$o])){
    $q.= $o.' = "'.$_POST[$o].'" AND '; 
    }

}

$q=substr($q,0, -4);


echo $q; // SELECT * FROM FOO WHERE keyword = "a" AND name = "b" AND date = "c" 
?>
于 2013-03-19T02:49:56.900 回答
0

这个结构会让你减少到 3 个 if 块。我不写 php,所以其他人可以给你语法。

select somefields
from sometables
where 1 = 3
and 
(
if they filled out the keyword
or keyword = that variable
if they filled out the name
or name = that variable
if they filled out the date
or date = that variable
)

确保使用查询参数。还要确保你有一个没有完成文本框的计划。最后,如果日期字段包含时间组件,请在查询中处理它。

于 2013-03-19T03:02:55.247 回答