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
Explain Booleans in PHP?
What is cookie in php with example?
How to find length of an array in php ?
Which cryptographic functions in php returns the longest hash value?
What is the static variable in function useful for?
How to get number of days between two given dates using PHP?
What is the capacity of mysql database?
Write a program to display reverse of any number?
What is preg_match?
What are the four scalar types of php?
How long does a php session last for?
Why is overriding runtime?
What is the difference between php 5 and php 7?
How to remove leading and trailing spaces from user input values?
What is namespaces in PHP?