how can I use bread crumb in PHP ?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a persistent cookie in php?

529


What was the old name of php?

955


How can you encrypt password using php?

513


How is it possible to know the number of rows returned in result set?

518


Is numeric in php?

529






How break and continue while loop in php?

480


What does a special set of tags do in php?

544


What is return in php function?

486


How do you check is php not empty?

546


Tell me what should we do to be able to export data into an excel file?

517


if you run the app program all vendor open items are cleared but is it possible to reverse the again again open items please tell me the answer

1269


Where is session value stored php?

531


How to find current date and time?

490


What is php mainly used for?

529


Can we run php on tomcat server?

553