Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I've been trying to use bindValue that can replace the whole search string with variable inside like below, but it doesn't works. Is there anyway I can do something similar?

if ($_POST['filter_group'] == "") {
      $filterGroup = "donorsGroups_IDs IS NOT NULL";
} else if ($_POST['filter_group'] == "N/A") {
      $filterGroup = "donorsGroups_IDs IS NULL";
} else {
      $filterGroup = "find_in_set('" . $_POST['filter_group'] . "',donorsGroups_IDs)";
}

$stmt = $CONN->prepare("SELECT * FROM table WHERE ID= :id AND :filterGroup");

$stmt->bindValue(':filterGroup', $filterGroup, PDO::PARAM_STR);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.8k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...