Every page has dynamic sidebar (column) such as 10 recent articles. It show list in title.
I have to repeat same block of code in every method (action) in the controllers files.
Eg:
<?php
class Blog extends CI_Controller {
function index()
{
// Sidebar code block
//some code for index
}
}
class Signup extends CI_Controller {
function index()
{
// Sidebar code block
//some code for index
}
function login()
{
// Sidebar code block
//some code for login
}
}
?>
In the view folder. I have a sidebar file
There must be a way to void repeating.