In the controller, you can use this method to load the view, but I want to know what happens behind the scenes here.
I am new to PHP and frameworks, but I learned the basics of OOP.
When called $this->view(), the method in the current class or the parent class is used.
But what does it mean $this->load->view()? What is intermediate load? is it a function or is it a property?
Where is he located? How can it contain view ()?
Thanks for the explanation.
source
share