Welcome Guest, Not a member yet? Register   Sign In
Can Views be forced to be sent?
#1

[eluser]micha8l[/eluser]
Is there a method or something to call for views to be rendered on call. I mean besides doing return $this->load->view('my_view');

I'd like to use such a method from within my library http://ellislab.com/forums/viewthread/212800/
#2

[eluser]LuckyFella73[/eluser]
Did you try this:

Code:
$this->load->view('myfile', '', false);

setting a third parameter to "false" should output the view directly
according to the user guide.
#3

[eluser]TWP Marketing[/eluser]
[quote author="micha8l" date="1344589985"]
...
I mean besides doing return $this->load->view('my_view');
...
[/quote]

Don't use return
Just using
Code:
$this->load->view('my_view');
is sufficient.
By default CI will render the view to the browser.




Theme © iAndrew 2016 - Forum software by © MyBB