モデルでget_whereを使用すると、重複を含むすべてのデータベースエントリが表示され、get onlyを使用すると、最初のエントリのみが表示されます。しかし、私はすべての個別のエントリが必要です。誰か助けてくれませんか。どうもありがとう!
Controler = 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);
}
モデル=continents_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;
?>