Hello ; First of all , I would ike to thank you for this work !!
I would like to ask you how I must do in this case :
mu home page is (at this stage I don’t show breadcrumb
http://localhost/MonSite/index.php/site
so when I click on a link Men for example (always at this page ) :
<a href="<?php echo site_url('client/gestionHomme/'); ?>" title="Homme">Men</a>
the url is
http://localhost/MonSite/index.php/client/gestionHomme
and breadcrumb is exact :
Home> Men
and when I would like to know more details about shoes men via by this link in view :
<a href="http://localhost/MonSite/index.php/client/gestionChaussure/<?php echo $tableau[$j][0]; ?>">
the url is
http://localhost/MonSite/index.php/client/gestionChaussure/89
and breadcrumb
Home> Shoes
I think it is normal because in site.php (controller file ) I have
2 functions
public function gestionHomme(){...}
public function gestionChaussure(){...}
and When we run at gestionHomme function the bread crumb become
Home> Men
and When we run at gestionChaussure function the bread crumb become
Home> Shoes
but I would like something like that when it’s about shoes details (gestionChaussure)
Home > Men > Shoes
thanks