Welcome Guest, Not a member yet? Register   Sign In
Help in include files
#2

[eluser]Rey Philip Regis[/eluser]
Hi,

Well if you have a header and footer in all your pages, you dont need to include or code them on every page of your site, that's a bad practice. What I suggest you to do is make a layout (template) for your views. Like loading a view within a view.

Sample: In the sample there is a css file inside the css folder. The css folder is inside the system folder.

Code:
Controller:

Sample.php
class Sample extends Controller
{
   function Sample()
   {
     parent::Controller();

     // need this to use base_url() in the template.php
     $this->load->helper('url');
   }

   function index()
   {
      $data['title'] = 'Sample Template';
      $data['content'] = 'main_page';

      $this->load->view('template', $data);
   }
}


template.php
<html>
<head>
  <title><?php echo $title; ?></title>

  <link type="text/css" rel="stylesheet" href="<?php echo base_url().'system/css/default.css'; ?>" />
</head>

<body>

   <div id="wrapper">
      <div id="header">
          $this->load->view('header');
      </div>

      <div id="content">
         $this->load->view($content);
      </div>

      <div id="footer">
         $this->load->view('footer');
      </div>
   </div>

&lt;/body&gt;

&lt;/html&gt;


main_page.php
<h1>This is the dynamic content (main page) of the page.....</h1>

header.php
<h1>Welcome to the website</h1>

footer.php
<h1>Copyright 2008</h1>

This is a simple example of what youre trying to do....

Hope this sample helps you.....


Messages In This Thread
Help in include files - by El Forum - 11-14-2008, 10:22 AM
Help in include files - by El Forum - 11-14-2008, 01:10 PM
Help in include files - by El Forum - 11-14-2008, 01:18 PM
Help in include files - by El Forum - 11-14-2008, 01:25 PM
Help in include files - by El Forum - 11-14-2008, 01:26 PM
Help in include files - by El Forum - 11-14-2008, 01:29 PM
Help in include files - by El Forum - 11-14-2008, 01:33 PM
Help in include files - by El Forum - 11-14-2008, 01:36 PM
Help in include files - by El Forum - 11-14-2008, 01:37 PM
Help in include files - by El Forum - 11-14-2008, 02:07 PM
Help in include files - by El Forum - 11-14-2008, 02:10 PM
Help in include files - by El Forum - 11-17-2008, 04:52 AM
Help in include files - by El Forum - 11-17-2008, 10:00 AM
Help in include files - by El Forum - 11-17-2008, 11:22 AM
Help in include files - by El Forum - 11-17-2008, 11:26 AM
Help in include files - by El Forum - 11-17-2008, 04:16 PM
Help in include files - by El Forum - 11-17-2008, 05:44 PM



Theme © iAndrew 2016 - Forum software by © MyBB