$assetcheckbox=$_POST['assetcheckbox'];
foreach($assetcheckbox as $assetcheckbox)
{
$query=$this->db->query('select a2.email_id from users a2,assets a1 where a1.status="In transit" and a1.serial_no IN ("$assetcheckbox") and a1.tmploc=a2.location group by a2.email_id');
$queryresult=$query->result();
var_dump($queryresult);
}
我在var_dump中获得空值。
如果我在phpmyadmin中运行,它会显示输出。
请帮助。