I have a Controller in CodeIgniter with the following code:
$this->load->view(\"first\"); echo \"LOL\"; $this->load->view(\"second\");
It's simple:
$this->load->view("...");
will not immediately display the view. This happens later, what is one of the benefits of a MVC framework.