Welcome Guest, Not a member yet? Register   Sign In
how to display data from the db in html tables dynamically?
#9

[eluser]theprodigy[/eluser]
Personally, I don't use the table class, but if I did, I would do something like:

controller
Code:
$this->load->library('table');

$records = $this->my_model->getSomething();

$data['table'] = $this->table->generate($records);

$this->load->view('myview', $data);

view
Code:
<!--
stuff above
-->
<?php echo $table; ?>
<!--
stuff below
-->


Messages In This Thread
how to display data from the db in html tables dynamically? - by El Forum - 08-05-2012, 09:35 PM



Theme © iAndrew 2016 - Forum software by © MyBB