HTML Table Class new error! |
Hello!
Please help! Added lines to controller method: PHP Code: $table = new \CodeIgniter\View\Table(); error: Class 'CodeIgniter\View\Table' not found What use to add?
07-16-2019, 05:35 AM
(This post was last modified: 07-16-2019, 05:37 AM by mboufos. Edit Reason: forgot something )
check here
https://www.codeigniter.com/user_guide/l...table.html load the library in controller : $this->load->library('table'); and the rest on view or what ever you like $data = array( array('Name', 'Color', 'Size'), array('Fred', 'Blue', 'Small'), array('Mary', 'Red', 'Large'), array('John', 'Green', 'Medium') ); echo $this->table->generate($data); i just tested it with no errors P.S. i dont know why you want this one $table = new \CodeIgniter\View\Table(); ![]()
This is good in CI3! I try it in CI4 and there such code does not work! Help me please!
@mboutos This *is* the CodeIgniter 4 support subforum, hence the namespaced HTML Table usage ... https://codeigniter4.github.io/CodeIgnit...table.html
@videoproc Your usage looks right out of the user guide, and should work. Need a bit more info for context ... where in your controller is this happening? is it perhaps outside of any method?
I just tried it in the Home Controller index method and it worked fine on my system.
Something else must be wrong on your end. I' m using the latest developers version of CI 4. Output: Code: Name Color Size What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Make sure you are running php 7.2+ it is required.
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
Use php 7.3
My code: PHP Code: <?php namespace App\Controllers; Errors log: Code: <?php defined('SYSTEMPATH') || exit('No direct script access allowed'); ?>
Updated CI to the latest version! It was beta 4.2. It all worked! I apologize for your concern!
No problem, that's what we are here for.
What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
|
Welcome Guest, Not a member yet? Register Sign In |