Hi Friends, 
You have a fully dynamic site it’s useful to show the user where they are by breaking down the URL structure so they can navigate backwards through the site.
You have a fully dynamic site it’s useful to show the user where they are by breaking down the URL structure so they can navigate backwards through the site.
Breadcrumbs on website using PHP Script
Breadcrumbs is used to navigate your dynamic website. its show where you are. just put this below code in your files and see your the magic.Example code:
$path_parts = pathinfo($_SERVER['REQUEST_URI']);
$filename=explode("?",$path_parts['basename']);
echo " ".$path_parts['dirname'].'/'.$filename[0];
No comments:
Post a Comment
Thanks....