I have this link in my db.php. I want everytime the dropdown menu is clicked it redirect to the corresponding page.
$ROOT_URL = '192.167.1.67/office/';
I want to go to this root url on the navigation every time i click on the link.
<a href="<?php echo $ROOT_URL; ?>admin/admindashboard.php">Home</a>
<ul class="dropdown-menu">
<li><a href="addproduct.php">Add Product</a></li>
<li><a href="product/viewproduct.php">View Product</a></li>
<li><a href="removedproduct.php">Removed Product</a></li>
</ul>
instead the page is redirecting as
192.168.1.67/admin/192.168.1.67/admin/product/addproduct.php
How can i solve this problem??