I have a function that which process the side bar of a web page in codeigniter.
as follows :
function process_sidebar()
{
$this->load->view("first_access"); // ------------(1)
$this->load->view("second_access");// --------------(2)
echo "Here i want to show some data after loading view second_access"; //pls note here --(3)
$this->load->view("third_access"); // --------------------(4)
$this->load->view("fourth_access"); //-------------------------(5)
}
Please check the order numbers,but the problem is codeigniter not keeping the order.
it rendering the view last and showing the echo
part first..
how can i overcome this ?
Thank you.
You'll want to append_output()
rather than echo
:
<?php
function process_sidebar()
{
$this->load->view("first_access"); // ------------(1)
$this->load->view("second_access");// --------------(2)
$this->output->append_output("Here i want to show some data after loading view second_access"); //pls note here --(3)
$this->load->view("third_access"); // --------------------(4)
$this->load->view("fourth_access"); //-------------------------(5)
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With