Jump to content

[SOLVED] nav bar help, dynamic color depending on page


DeanWhitehouse

Recommended Posts

i have made this code to check what page you are on and depending on the page, show a link or not

<?php
if($_SERVER['HTTP_HOST'] == "http://darkflame.awardspace.com/")
{
if($_SERVER['REQUEST_URI'] == "/index.php")
{
echo "Main";
}
}
else
{
echo '<a href="index.php">Main</a>';
} 
?>

 

but the first if , isn't working and it is displaying a link

any ideas, on how to fix this

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.