Welcome Guest, Not a member yet? Register   Sign In
Can someone help a newbie out?
#1

[eluser]BenBrah[/eluser]
I followed this http://www.youtube.com/watch?v=gvGymDhY49E
Creating Your First Template With CodeIgniter

Updated the controller to CI_controller

Basically when i go to
http://influencearticles.com/index.php/site/about_us

It should be calling the about_us.php information and adding it to the middle

and again with

http://influencearticles.com/index.php/site/contact_us

But I'm getting errors on all 3 including just /site

Can anyone tell me where i've gone wrong please?


Site / Controller
Code:
<php

class SITE extends CI_controller {

  function contact_us()
  {
        &data;['main_content'] = 'contact_us';
  $this->load->view('template', &data;);
  }
  
    function about_us()
  {
        &data;['main_content'] = 'about_us';
  $this->load->view('template', &data;);
  }
  
}

header
Code:
<!DOCTYPE html>

&lt;html lang="en"&gt;
&lt;head&gt;
  &lt;meta http-equiv="Content_Type" content="text/html; charset=utf-8"&gt;
  &lt;title&gt;untitled&lt;title&gt;
&lt;/head&gt;
&lt;body&gt;
<p>this comes from the header view</p>

footer
Code:
<p>This is the footer</p>
&lt;body&gt;
&lt;/html&gt;

about us
Code:
<p>This is the about us page.</p>

and finally contact us page
Code:
<p>This is the contact us page.</p>


Messages In This Thread
Can someone help a newbie out? - by El Forum - 02-21-2012, 04:45 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 05:23 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 05:24 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 06:13 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 06:26 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 06:41 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 06:49 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 06:51 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 06:53 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 07:03 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 07:06 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 07:10 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 07:11 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 07:12 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 07:13 PM
Can someone help a newbie out? - by El Forum - 02-21-2012, 07:13 PM



Theme © iAndrew 2016 - Forum software by © MyBB