每当我在模型中使用 get_where 时,它都会给我所有数据库条目,包括重复项,而当我只使用 get 时,它只会给我第一个条目。但我想要所有不同的条目。谁能帮助我。非常感谢!
控制器 = site.php:
public function western_australia(){
$this->load->model("continents_get");
$data["results"] = $this->continents_get
->getMaincategories("western_australia");
$this->load->view("content_western_australia", $data);
}
模型 = 大陆_get.php
function getMaincategories($western_australia){
$this->db->distinct();
$query = $this->db->get_where("p_maincategories",
array("page" => $western_australia));
return $query->result();
}
视图 = content_western_australia.php
<?php
foreach($results as $row){
$page = $row->page;
$main_en = $row->main_en;
echo $main_en;
?>