これは私のモデルです
function get_news(){
$this->db->select('*');
$this->db->from('articles');
$this->db->where('status' , 0);
$this->db->limit(6);
$this->db->order_by('created', 'desc');
return $this->db->get()->result();
}
私のテーブルアークティクル
id----title----body----status---created
ここで、列の本文に、ビュー、コントローラー、またはこのモデルを編集する必要がある100文字のみを表示したい..
よろしくお願いします。