hey there.... i have a navigation bar that will display the links on the left hand side of the page.... if the user is on the page (ex. index) then the link become red and is not a link anymore, if the user is not on the index page then the link works normally.... with each link i pass a ?page=current_page to the URL, and then i retrieve it with a $get command.... the $get is working properly, and it echos out what it should (ie. the xxxx from ?page=xxxx in the URL)... the problem that im having is that all the links are red and are non-clickable... meaning that the if statements are not working as they should... my code is below:
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
body {
background-image: url();
}
.style2 {color: #FF0000}
-->
</style>
<p><span class="style1"></span>
</p>
<?
echo "<style type='text/css'>
a:link
{
color: #0000FF;
text-decoration: none;
}
a:visited
{
color: #0000FF;
text-decoration: none;
}
a:hover
{
color: #FF0000;
text-decoration: none;
}
a:active
{
color: #0000FF;
text-decoration: none;
}
</style>";
$page = $_GET['page'];
echo "<table width='180' border='0' align='left' cellpadding='1' background='background.gif'><br>";
echo "$page";
if ($page == 'index')
echo "<tr><td width='178' align='left'><b><font color='#FF0000'>Home</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><a href='index.php?page=index'>Home</a></b></td></tr>";
if ($page = 'cent_2005')
echo "<tr><td width='178' align='left'><b><font color='#FF0000'>Saskatchewan Centennial 2005 front plate</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><a href='cent_2005.php?page=cent_2005'>Saskatchewan Centennial 2005 front plate</a></b></td></tr>";
if ($page = 'programs')
echo "<tr><td width='178' align='left'><b><font color='#FF0000'>Current Programs</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><a href='programs.php?page=programs'>Current Programs</a></b></td></tr>";
if ($page = '100_club')
echo "<tr><td width='178' align='left'><b><font size='2' color='#FF0000'>Saskatchewan Century Club</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><font size='2'><a href='100_club.php?page=100_club'>Saskatchewan Century Club</a></b></td></tr>";
if ($page = 'gray_matters')
echo "<tr><td width='178' align='left'><b><font size='2' color='#FF0000'>Gray Matters</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><font size='2'><a href='Gray_Matters.php?page=gray_matters'>Gray Matters</a></b></td></tr>";
if ($page = 'senior_friendly')
echo "<tr><td width='178' align='left'><b><font size='2' color='#FF0000'>Senior Friendly</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><font size='2'><a href='senior_friendly.php?page=senior_friendly'>Senior Friendly</a></b></td></tr>";
if ($page = '800_hotline')
echo "<tr><td width='178' align='left'><b><font size='2' color='#FF0000'>Seniors Hotline</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><font size='2'><a href='800_hotline.php?page=800_hotline'>Seniors Hotline</a></b></td></tr>";
if ($page = 'lifeline')
echo "<tr><td width='178' align='left'><b><font size='2' color='#FF0000'>Lifeline</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><font size='2'><a href='lifeline.php?page=lifeline'>Lifeline</a></b></td></tr>";
if ($page = 'achievements')
echo "<tr><td width='178' align='left'><b><font color='#FF0000'>SSM Achievements</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><a href='achievements.php?page=achievements'>SSM Achievements</a></b></td></tr>";
if ($page = 'then_now')
echo "<tr><td width='178' align='left'><b><font size='2' color='#FF0000'>Saskatchewan Remembers Then and Now</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><font size='2'><a href='then_now.php?page=then_now'>Saskatchewan Remembers Then and Now</a></b></td></tr>";
if ($page = 'opinion_papers')
echo "<tr><td width='178' align='left'><b><font color='#FF0000'>SSM Position Papers</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><a href='opinion_papers.php?page=opinion_papers'>SSM Position Papers</a></b></td></tr>";
if ($page = 'membership')
echo "<tr><td width='178' align='left'><b><font color='#FF0000'>Membership/Links</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><a href='membership.php?page=membership'>Membership/Links</a></b></td></tr>";
if ($page = 'contact_info')
echo "<tr><td width='178' align='left'><b><font color='#FF0000'>Contact Information</font></b></td></tr>";
else
echo "<tr><td width='178' align='left'><b><a href='contact_info.php?page=contact_info'>Contact Information</a></b></td></tr>";
?>
any help would be greatly appreciated