Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.8k views
in Technique[技术] by (71.8m points)

PHP PDO bindValue

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);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...