how can I use bread crumb in PHP ?
Answers were Sorted based on User's Feedback
Answer / latha
<?php
session_start();
include("./Breadcrumb.php");
$trail = new Breadcrumb();
$trail->add('Home', $_SERVER['PHP_SELF'], 0);
//Sample CSS
echo "
<style>
#breadcrumb ul li{
list-style-image: none;
display:inline;
padding: 0 3px 0 0;
margin: 3px 0 0 0;
}
#breadcrumb ul{
margin:0;padding:0;
list-style-type: none;
padding-left: 1em;
}
</style>
";
//Now output the navigation.
$trail->output();
?>
| Is This Answer Correct ? | 0 Yes | 0 No |
create a session array variable in the homepage or index page,
$_SESSION['page_name']= array();
index.php :-
$_SESSION['page_name'][]=array('title'=>'Home','page'=>'index.php');
contact_us.php :-
$_SESSION['page_name'][]=array('title'=>'Contact Us
','page'=>'contact_us.php');
similarly for all the pages.
where you want to display the bread crumb just paste this code.
foreach($_SESSION{'page_name'] as $brdcrum)
{
echo '<a
href="'.$brdcrum['page'].'">'.$brdcrum['title']."</a> >> ";
}
| Is This Answer Correct ? | 1 Yes | 3 No |
Who is the father of PHP and explain the changes in PHP versions?
13 Answers Befree, iMark Group, Netizen,
What is encapsulation in php?
why header() gives the error like header already sent in php please explain in brief
Tell me is it possible to protect special characters in a query string?
Tell me how to set a page as a home page in a php based site?
What is the purpose of basename() function in PHP?
What is mean by an associative array?
What is the use of "ksort" in php?
What is the use of "enctype" attribute in a html form?
What is register_globals in php?
6 Answers Castling IT, HCL, Intel Soft Solutions, Millennium,
How to find the length of a string?
How do I find out the number of parameters passed into function?