Basically I am making bread crumb navigation so I take like 'articles/foo/hello'
and explode it into an array
then i want to make breadcrumb navigation like
home > articles > foo > hello
respectively the links would be to
'index.php' > '?doc=articles' > '?doc=articles/foo' > no link for last/current item.
So I would just take the array value and ucfirst() it and that would be the link text.