You will need to use PHP for creating bread crumbs,
Like suppose your site has some category and inside category some page, then how will you manage bread crumb? it would be something like below code
assuming following stuff
your URL after click is something http://mydomain.com/index.php?cat=somecategory
then your breadcrum would be
Code:
<?php
echo "You are Here <a href='index.php'>Home</a> >> ".$_GET['cat'];
?>
Get it modified as per your need, or post your URLs,
I might be able to help you out.
Hope this helps!