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

Explain Booleans in PHP?

836


What is cookie in php with example?

688


How to find length of an array in php ?

746


Which cryptographic functions in php returns the longest hash value?

749


What is the static variable in function useful for?

716


How to get number of days between two given dates using PHP?

660


What is the capacity of mysql database?

776


Write a program to display reverse of any number?

668


What is preg_match?

725


What are the four scalar types of php?

818


How long does a php session last for?

758


Why is overriding runtime?

740


What is the difference between php 5 and php 7?

660


How to remove leading and trailing spaces from user input values?

735


What is namespaces in PHP?

735