eastside/application/controllers/test.php
Linus Miller cd141ef6fa Initial commit.
Former-commit-id: d2e17d67fe98124db4e87b10597af9d54d14d0de
2013-12-07 17:43:26 +01:00

11 lines
243 B
PHP

<?php
class Test extends CI_Controller {
public function __construct() {
parent::__construct();
}
public function view() {
$data['title'] = 'This is a title';
$this->load->view('templates/text','');
}
}