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

[eluser]CroNiX[/eluser]
You are getting an error when you just go to "site" because you don't have an index method in your Site class, which is what gets loaded if no method is used in the url.

Site should be "Site", not "SITE" in your class declaration. CI_Controller, not CI_controller.

Your other errors are because you have a semicolon after "data" and are using & where you should be using $ in your variables. You left the $ off of data. Those are very basic php things. Are you sure you are ready for CI?

Code:
class Site extends CI_Controller {

  function index()
  {
    //load some default view?
  }

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

  //make the same changes to about_us() as I did to contact_us()
}


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