Hello all,
im trying to ding into codeigniter MVC but i dont know how i make my template so i have 2 files (header and footer) and then i can make my controllers and then ONLY put information in the "content" div, so i include the top and the header a good way like this
<?php
include("header.php");
?>
<div id="content">My content here</div>
<?php
include("footer.php");
?>
hope you understand what i mean and can help me out :)