2
我執行下面的查詢在我的模型的get_distribuidor()函數:笨從模型傳遞數組數據到控制器
public function get_distribuidor()
{
$this->load->helper('url');
$query = $this->db->query("SELECT * FROM distribuidor where id_distribuidor='1';");
foreach ($query->result_array() as $row)
{
echo $row['id_distribuidor'];
echo $row['nome_empresa'];
echo $row['cod_postal'];
echo $row['localidade'];
echo $row['telefone'];
echo $row['fax'];
echo $row['email'];
}
$res = array(
'nome_empresa' => $row['nome_empresa'],
'morada' => $row['morada'],
'cod_postal' => $row['cod_postal'],
'localidade' => $row['localidade'],
'telefone' => $row['telefone'],
'fax' => $row['fax'],
'email' => $row['email']
);
return $res;
}
現在,回到$資源來控制,我不知道很以及如何分離數組結果包含的多個字段。
我用這對控制器的功能:
$data['nome_produto']=$this->fichas_model->set_fichas();
$teste=$this->fichas_model->get_distribuidor();
$this->load->view('produtos/ponto1',$data, $teste);
上的觀點是這樣寫的:
<input type="input" name="morada" value="<?php echo $teste['morada'];?>" /><br />
,但它不工作,能有人指出我什麼我我做錯了?
工作就像一個魅力:)謝謝了很多神祕的:P – user1511579