I have layout here and I want to insert the menu into the menu layout. Lately, I’m using frameset to solve this, but this time, I want to try using a div instead of frameset and also through CodeIgniter.
When the menu successful, so I can load the form to the form layout 😀
How do I do this through CodeIgniter framework?
you have two choices is to directly load the view inside the view like this
Or passing it as a variable from the controller and echo it in the view like this
and on the view
Goodluck!