Welcome Guest, Not a member yet? Register   Sign In
Help with linking categories
#11

[eluser]GrahamDj28[/eluser]
So my catalog example should also do the trick.
The rest of the pages could remain manual pages.

An example of a catalog:
Code:
class Catalog extends CI_Controller {
    public function __construct() {
        parent::__construct();
    }

    public function index() {
        //In this function you call the function to get all your categories
    }

    public function category() {
        //In this function you get the items/sub categories for the request category
        $param1 = $this->uri->segment(3);
        $param2 = $this->uri->segment(4);
    }
}

But it is worth looking into the fallback system! How great CI is, it does come with alot of copy paste work when using it out of the box. When using this, the copy paste goes away!


Messages In This Thread
Help with linking categories - by El Forum - 05-01-2012, 12:40 PM
Help with linking categories - by El Forum - 05-01-2012, 01:04 PM
Help with linking categories - by El Forum - 05-01-2012, 01:15 PM
Help with linking categories - by El Forum - 05-01-2012, 01:36 PM
Help with linking categories - by El Forum - 05-01-2012, 01:41 PM
Help with linking categories - by El Forum - 05-01-2012, 01:53 PM
Help with linking categories - by El Forum - 05-01-2012, 01:55 PM
Help with linking categories - by El Forum - 05-01-2012, 02:03 PM
Help with linking categories - by El Forum - 05-01-2012, 02:07 PM
Help with linking categories - by El Forum - 05-01-2012, 02:11 PM
Help with linking categories - by El Forum - 05-01-2012, 02:17 PM
Help with linking categories - by El Forum - 05-01-2012, 02:19 PM
Help with linking categories - by El Forum - 05-01-2012, 02:21 PM
Help with linking categories - by El Forum - 05-01-2012, 02:22 PM
Help with linking categories - by El Forum - 05-01-2012, 02:24 PM
Help with linking categories - by El Forum - 05-01-2012, 02:27 PM
Help with linking categories - by El Forum - 05-01-2012, 02:28 PM
Help with linking categories - by El Forum - 05-01-2012, 02:31 PM
Help with linking categories - by El Forum - 05-01-2012, 02:34 PM



Theme © iAndrew 2016 - Forum software by © MyBB