私のモデルでは限界が最新のレコードを取得しますCodeIgniterの
public function getLogs()
{
$this->db->limit(5);
$query = $this->db->get('tbllogs');
return $query->result();
}
私のモデルでは限界が最新のレコードを取得しますCodeIgniterの
public function getLogs()
{
$this->db->limit(5);
$query = $this->db->get('tbllogs');
return $query->result();
}
この
$this->db->order_by("id", "desc");
$this->db->limit(5);
$query = $this->db->get('tbllogs');
return $query->result();
それともold
ためとlatest
ロジックはそれでorderBy
クエリパラメータを使用してビュー内の2つのリンクを作成してみます。お使いのコントローラメソッドで
<a href="/controller/method?orderBy='old'">Old</a>
<a href="/controller/method?orderBy='latest'">Latest</a>
if ($this->input->get('orderBy') == 'old') {
$this->db->order_by("id", "asc");
} else {
$this->db->order_by("id", "desc");
}
$this->db->limit(5);
$query = $this->db->get('tbllogs');
return $query->result();
問題は何ですか?質問は何ですか? – Tpojka
Zayn Aliは既にそれに答えました – Holow