I have a Controller in CodeIgniter with the following code:
$this->load->view(\"first\"); echo \"LOL\"; $this->load->view(\"second\");
Here's a more elegant way to do this:
$this->load->view("first"); $this->output->append_output("LOL"); $this->load->view("second");
Using this will reduce rewrites of pre-written $this->load->view statements into echos. Hope it helps.