作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这个问题类似于PHP Multiple Dropdown Box Form Submit To MySQL , 但有一个转折点。
假设我们有一个 HTML 多选,它被提交到 PHP 后端。
如何在多选值上优雅地创建一个带有 OR 条件的 mysql 请求?
例如,我有一个带有运动列表的多选。怎么做:
SELECT * FROM sports WHERE sport.name=:sport1 OR sport.name=:sport2 OR sport.name=:sport3...
最佳答案
这是未经测试的,只是一个想法...
$_POST['sports'] = array('basketball', 'baseball', 'football', 'soccer');
$sql = sprintf("SELECT * FROM sports WHERE sport.name IN (%s)", implode( ',', array_fill(1,count($_POST['sports']), '?') ) );
// SELECT * FROM sports WHERE sport.name IN (?,?,?,?)
$st = $dbh->prepare($sql);
// bind all values
foreach( $_POST['sports'] as $i => $sport) {
$st->bindValue( ++$i, $sport );
}
$st->execute();
关于PHP 多下拉框表单使用 OR 提交到 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1805413/
我是一名优秀的程序员,十分优秀!