I've a common menu page called header.php, which I've included in my index and another page. Now I've to implement a facilities, through which, it will select the menu when I clicked it, and when I clicked another menu the select will jump to that. But the problem is, here I'm using dynamic pages (only two pages) one index.php and another suppose details.php, and and I'm using the link as
Here is the css that i'm using
div.DHeader03 div.DHeader03MenuTop{background-color:#333;height:31px;float:left;width:100%;}div.DHeader03 div.DHeader03MenuTop a{padding:5px 10px 5px 10px;color:#ccc;float:left;}div.DHeader03 div.DHeader03MenuTop a:hover{color:#fff;background-color:#000;}
And below is my header.php page code (menu part only)
<div class="DHeader03">
<div class="DHeader03MenuTop">
<a href="http://www.banglanews24.com/new/categorizednews.php?newtype=15">Home</a>
<a href="http://www.banglanews24.com/new/categorizednews.php?newtype=3">About</a>
</div>
<div class="DHeader03MenuBottom">
<a href="http://www.banglanews24.com/new/categorizednews.php?newtype=33">Test</a>
<a href="http://www.banglanews24.com/new/categorizednews.php?newtype=17">Contact</a>
</div>
</div>
Now my question is, in this case How can I implement this?