You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
World Wide Web Server edited this page Jul 4, 2012
·
4 revisions
Really simple: Add a header and footer on every page
[code]
//controller
$this->load->helper('url');
include('header.inc');
$this->load->view('content');
include('footer.inc');