我有以下代码:
$m1 = $this->dbop->customquery('SELECT DISTINCT number FROM users');
$message =''; $email='';
$count=array();
foreach($m1 as $item){
$message='';
$count=array();
$m2 = $this->dbop->customquery("SELECT * FROM users where
number='".$item->number."'");
foreach ($m2 as $value) {
//$data['alldata'] = $value;
$count[] = $this->dbop->customquery("SELECT * FROM
s_data where userid='".$value->id."'");
$os_count = $this->dbop->customquery("SELECT * FROM
os where userid='".$value->id."'");
$data['dd']=$this->dbop->customquery("SELECT * FROM os
where userid='".$value->id."'");
}
}
$data['username'] = $this->session->userdata('username');
$this->load->view('header-inside', $data);
$this->load->view('am-report' , $data);
$this->load->view('crm/footer-inside');我想传递$data['dd]来查看。我目前正在接受的只是第一价值。帮我个忙
发布于 2017-09-17 15:40:24
您正在替换$data‘’dd‘值。每次foreach循环运行时,它都会替换为新值。相反,就像这样
$data['dd'][] = $this->dbop->customquery("SELECT * FROM os
where userid='".$value->id."'");https://stackoverflow.com/questions/46265815
复制相似问题