Skip to content

Tag: codeigniter

Codeigniter 4 pagination with custome mysql query

In my Codeigniter 4 project i used $db->query(‘select * from myTable’) method to get data. (used this directly on controller without model) Is there way to initialize pagination with Codeigniter for this kind of stuff. I’m new to Codeigniter 4 and not worked $this->pagination->initi…

CI4 Inserting ID from selected Strings

I’m so tired of thinking how to solve this case. already search by internet and never solved. straight to the point this is my Controller of Product.php this is my Models Model_product.php and this is my Views create.php i want to insert new data from Controller Product function store. i’ve this p…

Undefined database variable

Blog.php code below: blog_index.php code below: I can’t see where is my mistake, it raises a errorException: “Undefined Variable:dados”. About $categorias variable, am learning how to use more than one table per controller. Codeigniter version: 4.0.4 Running through xampp Answer Controller B…