Welcome Guest, Not a member yet? Register   Sign In
codeigniter get category and subcategory
#1

Hello Im new in code igniter 

i want to display category and subcat of this category


when i enter url 

http://localhost/ci/index.php/category/1


[Image: 3r-GJelHTi2__qj0HnRhvg.png]

sorry for my bad english
Reply
#2

You will need a route in application/config/routes.php. E.g.:
PHP Code:
$route['category/(:any)'] = 'category/view/$1'

Create a controller named Category.php
Create a method inside it named view, which accepts the category_id as parameter:
PHP Code:
public function view($category)
{
 
 //collect category and subcategories from your database, see documentation about the Query Builder.
 
 //display the data in a view you load, see documentation about loading views


The tutorial about the News section could give you a good start.
Reply
#3

I think this is what your looking for.

Article:

Download Code:
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply




Theme © iAndrew 2016 - Forum software by © MyBB