
kontroller
class First_Controller extends Controller { public function index() { $config = Kohana::config_load('database'); $model = new News_Model(); $view = new View( 'first_view' ); $view->title = 'Elo elo'; $results = $model->getNews(2); $view->results = $results; $view->render(true); } public function add() { $view = new View( 'first_view' ); $view->title = 'new'; } } ?>
kiedy jednak wpisze w przeglądarke adres
Kod
http://localhost/kohana/index.php/first/add/
To wyświetla mi 2 stronę dlaczego
