|
@@ -244,10 +244,10 @@ class Reciveremote extends Base
|
|
|
if(empty($v)){
|
|
|
break;
|
|
|
}
|
|
|
- $queryWhere.= " and `e`.`exam_class` in (?)";
|
|
|
- $ex = implode('\',\'',$v);
|
|
|
+ $queryWhere.= " and `e`.`exam_class` in ?";
|
|
|
+ $ex = implode(',', $v);
|
|
|
// $where .= " and e.exam_class in ('".$ex."')";
|
|
|
- $options[] = "'".$ex."'";
|
|
|
+ $options[] = "(".$ex.")";
|
|
|
// var_dump($v);
|
|
|
break;
|
|
|
case 'name':
|