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
What is empty () in php?
What is difference between md5 and SHA256?
Tell me how can we get the error when there is a problem to upload a file?
Tell me how a constant is defined in a php script?
What type of headers have to be added in the mail function to attach a file?
How arrays are used in php?
What is the default session time in php?
How to remove white spaces from the beginning and/or the end of a string in php?
What are magic constants in php?
How to convert the first character to upper case?
Tell us why did you choose this particular career path?
Where is my php ini file?
What is the difference between html and php?
How can you increase the maximum execution time of a script in php?
How do you end php?