Welcome Guest, Not a member yet? Register   Sign In
Table
#1

[eluser]davy_yg[/eluser]

Hello all,

I am trying to create table. Here is the code that I type:

controllers/tables.php

Code:
<?php

class Tables extends CI_Controller {

public function create_table()
{

$this->load->library('table');

$this->table->set_heading(array('Name', 'Color', 'Size'));

$this->table->add_row(array('Fred', 'Blue', 'Small'));
$this->table->add_row(array('Mary', 'Red', 'Large'));
$this->table->add_row(array('John', 'Green', 'Medium'));

$this->load->view('table');


}

}

?>


views/table.php

Code:
<html>
<body>

<?php  echo $this->table->generate();  ?>


</body>
</html>

I point my url to:

http://localhost/News/index.php/table/


404 Page Not Found

The page you requested was not found.


Why is it?


Messages In This Thread
Table - by El Forum - 08-12-2013, 08:36 PM
Table - by El Forum - 08-12-2013, 08:59 PM
Table - by El Forum - 08-12-2013, 11:07 PM
Table - by El Forum - 08-13-2013, 12:39 AM
Table - by El Forum - 08-13-2013, 12:57 AM
Table - by El Forum - 08-13-2013, 01:08 AM
Table - by El Forum - 08-13-2013, 01:48 AM
Table - by El Forum - 08-13-2013, 02:07 AM
Table - by El Forum - 08-13-2013, 02:22 AM
Table - by El Forum - 08-13-2013, 02:33 AM
Table - by El Forum - 08-13-2013, 02:52 AM
Table - by El Forum - 08-13-2013, 02:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB