Posts by ViniciusGPereira • 16 points
2 posts
-
0
votes1
answer34
viewsA: Edit PHP Data with Jquery and Modal Bootstrap
$("#editModal").on('show.bs.modal', event => { tr = $(this).closest('tr'); let data =[]; $(tr).find('td').each (function() { data.push(this.html()); });…
-
0
votes1
answer147
viewsA: DISTINCT and GROUP BY do not work on Codeigniter
Try grouping before sorting, for example: MODEL $this->db->select(); $this->db->group_by(); $this->db->order_by(); $this->db->get();…