I am using this to get results from a database, but it limits to 1 record.
I don't want any limit; I tried removing it but that doesn't work .
$this->db->from('links');
$this->db->where('uniq', $nnn[0]->uniq);
$this->db->limit(1);
$q = $this->db->get();
$nnn[0]->linkos=$q->result()[0];
return $nnn;