I use a Perl shopping cart and have modified it to use SEO friendly URLs but the beadcrumbs trail is broken as a result.
How can I create a dynamic breadcrumb trail using Perl that does not rely on directory structures or sitemaps?
I need for the script to use a conditional statement to figure out if it is showing a category page or a product page (I can do this with an if/else) and if it is on a category page, I need for it to look in the mysql db for parent categories of the present category until there are no more parents and output the results in a breadcrumb trail.
If I can get this working then I will move on to the product pages.
Any help is appreciated.