Posts by Rafael Lucas • 1 point
2 posts
-
-1
votes1
answer265
viewsA: How to get id of a CRUD element [Codeigniter]
Use the $row['id'] While you’re inside your block foreach you can take this data.
-
0
votes1
answer33
viewsA: Upload error - Codeigniter
Try to put the allowed_types. Ex.: $configUpload['upload_path'] = $path; $configUpload['file_name'] = $descricao; $configUpload['allowed_types'] = 'jpg|png|gif|pdf|zip|rar|doc|xls';…