Codeigniter: Get the last row of table

center
         // you can use the where clause
         $this->db->where('field1', 'string');
         $query = $this->db->get('tabledb');
         // Returns the "last" row
         $last = $query->last_row('array');
         // retrieve last inserted id from table
         $last_id = $last['id'];
  • Share/Bookmark



Post a Comment

You must be logged in to post a comment.