After i used form submit my controller make this operation (pseudocode):
form_open('wpis/dodaj','name="form"')
->
wpis (controller)
->
dodaj()
->
[operation with model]
$this -> load -> view('layouts/main')
Works fine but address bar is still www.mysite.com/wpis/dodaj. When i'm using
$this -> load -> view('layouts/main')
redirect() or redirect('mvc')
i get
headers already sent error
How can i run controller mvc in dodaj function, in wpis controller? MVC is my default controller.